(PHP 5, PHP 7)
ReflectionParameter::getClass — Get the type hinted class
Gets the class type hinted for the parameter as a ReflectionClass object.
Esta função não está documentada; somente a lista de argumentos está disponível.
Esta função não possui parâmetros.
A ReflectionClass object.
Exemplo #1 Using the ReflectionParameter class
<?php
function foo(Exception $a) { }
$functionReflection = new ReflectionFunction('foo');
$parameters = $functionReflection->getParameters();
$aParameter = $parameters[0];
echo $aParameter->getClass()->name;
?>
O exemplo acima irá imprimir:
Exception