ReflectionType::getName() should be ReflectionNamedType::getName()

This commit is contained in:
Michael Moravec 2019-07-07 19:27:22 +02:00
parent f161ec38d8
commit 4098085874
No known key found for this signature in database
GPG Key ID: 946F139F96C1C1B5
1 changed files with 9 additions and 11 deletions

View File

@ -1999,15 +1999,6 @@ class ReflectionType
{
}
/**
* Get type of the parameter.
* @return string Returns the type of the parameter.
* @since 7.1.0
*/
public function getName()
{
}
private final function __clone() {}
}
@ -2119,8 +2110,15 @@ class ReflectionClassConstant implements Reflector {
/**
* @since 7.1
*/
class ReflectionNamedType extends ReflectionType{
class ReflectionNamedType extends ReflectionType
{
/**
* Get the text of the type hint.
* @return string Returns the text of the type hint.
*/
public function getName()
{
}
}
/**