CodeExplorer extractFromReflectionType example
return null;
} if (!
$reflectionConstructor =
$reflection->
getConstructor()) { return null;
} if (!
$reflectionParameter =
$this->
getReflectionParameterFromConstructor($property,
$reflectionConstructor)) { return null;
} if (!
$reflectionType =
$reflectionParameter->
getType()) { return null;
} if (!
$types =
$this->
extractFromReflectionType($reflectionType,
$reflectionConstructor->
getDeclaringClass())) { return null;
} return $types;
} private function getReflectionParameterFromConstructor(string
$property, \ReflectionMethod
$reflectionConstructor): ?\ReflectionParameter
{ foreach ($reflectionConstructor->
getParameters() as $reflectionParameter) { if ($reflectionParameter->
getName() ===
$property) { return $reflectionParameter;
}