(PHP 7)
ReflectionType::__toString — To string
Gets the parameter type name.
Esta función no tiene parámetros.
Returns the type of the parameter.
Ejemplo #1 ReflectionType::__toString() example
<?php
function someFunction(string $param) {}
$reflectionFunc = new ReflectionFunction('someFunction');
$reflectionParam = $reflectionFunc->getParameters()[0];
echo $reflectionParam->getType();
El resultado del ejemplo sería algo similar a:
string