(PHP 7)
ReflectionType::__toString — To string
Esta función ha sido declarada OBSOLETA a partir de PHP 7.1.0. Su uso está totalmente desaconsejado.
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