php-ref
php-ref copied to clipboard
ReflectionType::__toString() is deprecated
trafficstars
Deprecated: Function ReflectionType::__toString() is deprecated in \vendor\digitalnature\php-ref\ref.phpon line 2060
This deprecated message occurs on PHP7.4+
How to fix it ?
Change file ref.php on line 2019:
$type = $parameter->getType(); to $type = $parameter->getName();
And line 2057
$type = $method->getReturnType(); to $type = $method->getName();
Solved on PHP 7.4.19