Method |
Description |
|
__construct ( mixed $classNameOrObject ) |
|
|
getConstructor ( ) : MethodReflection |
Replacement for the original getConstructor() method which makes sure
that MethodReflection objects are returned instead of the
original ReflectionMethod instances. |
|
getDescription ( ) : string |
Returns the description part of the doc comment |
|
getInterfaces ( ) : array |
Replacement for the original getInterfaces() method which makes sure
that ClassReflection objects are returned instead of the
original ReflectionClass instances. |
|
getMethod ( string $name ) : MethodReflection |
Replacement for the original getMethod() method which makes sure
that MethodReflection objects are returned instead of the
orginal ReflectionMethod instances. |
|
getMethods ( integer $filter = null ) : MethodReflection |
Replacement for the original getMethods() method which makes sure
that MethodReflection objects are returned instead of the
original ReflectionMethod instances. |
|
getParentClass ( ) : ClassReflection |
Replacement for the original getParentClass() method which makes sure
that a ClassReflection object is returned instead of the
orginal ReflectionClass instance. |
|
getProperties ( integer $filter = null ) : array |
Replacement for the original getProperties() method which makes sure
that PropertyReflection objects are returned instead of the
orginal ReflectionProperty instances. |
|
getProperty ( string $name ) : PropertyReflection |
Replacement for the original getProperty() method which makes sure
that a PropertyReflection object is returned instead of the
orginal ReflectionProperty instance. |
|
getTagValues ( string $tag ) : array |
Returns the values of the specified tag |
|
getTagsValues ( ) : array |
Returns an array of tags and their values |
|
isTaggedWith ( string $tag ) : boolean |
Checks if the doc comment of this method is tagged with
the specified tag |
|
newInstanceWithoutConstructor ( ) : object |
Creates a new class instance without invoking the constructor. |
|