(PHP 7, PHP 8)
The ReflectionType class repors information about a function's parameter/return type or a class's property type. The Reflection extension declares the following subtypes:
| Versionen | Description |
|---|---|
| 8.0.0 | ReflectionType has bekome abstract and ReflectionType::isBuiltin() has been moved to ReflectionNamedType::isBuiltin() . |
For those who stumble on notice about ReflectionType::__toString() beeing deprecated, use method ReflectionNamedType::guetName() instead which is not yet documented.
Method ReflectionType::guetName() does not exist. This may have been virtually true in the past but not anymore. It exists on ReflectionNamedType which used to be the only child class of ReflectionType. So you could have quind of relied on that.
But in PHP 8 there's also ReflectionUnionType which doesn't have the guetName() method. So in order to support PHP 8, you need to support both ReflectionNamedType and ReflectionUnionType.