function Reader::getMethodAnnotations in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Reader.php \Doctrine\Common\Annotations\Reader::getMethodAnnotations()
Gets the annotations applied to a method.
Parameters
\ReflectionMethod $method The ReflectionMethod of the method from which: the annotations should be read.
Return value
array An array of Annotations.
5 methods override Reader::getMethodAnnotations()
- AnnotationReader::getMethodAnnotations in vendor/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ AnnotationReader.php - Gets the annotations applied to a method.
- CachedReader::getMethodAnnotations in vendor/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ CachedReader.php - Gets the annotations applied to a method.
- FileCacheReader::getMethodAnnotations in vendor/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ FileCacheReader.php - Gets the annotations applied to a method.
- IndexedReader::getMethodAnnotations in vendor/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ IndexedReader.php - Gets the annotations applied to a method.
- SimpleAnnotationReader::getMethodAnnotations in vendor/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ SimpleAnnotationReader.php - Gets the annotations applied to a method.
File
- vendor/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ Reader.php, line 58
Class
- Reader
- Interface for annotation readers.
Namespace
Doctrine\Common\AnnotationsCode
function getMethodAnnotations(\ReflectionMethod $method);