ReflectionParameter::getClass

(PHP 5, PHP 7)
Get the type hinted class
public ReflectionClass ReflectionParameter::getClass ( void )

Gets the class type hinted for the parameter as a ReflectionClass object.

Returns:

A ReflectionClass object.

This function is currently not documented; only its argument list is available.

Examples:
Using the ReflectionParameter class
<?php
function foo(Exception $a) { }

$functionReflection = new ReflectionFunction('foo');
$parameters = $functionReflection->getParameters();
$aParameter = $parameters[0];

echo $aParameter->getClass()->name;
?>

The above example will output:

Exception
See also:

ReflectionParameter::getDeclaringClass() -

doc_php
2016-02-24 16:13:45
Comments
Leave a Comment

Please login to continue.