public function AnnotationReader::getMethodAnnotations in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_annotation_discovery/lib/Doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php \Doctrine\Common\Annotations\AnnotationReader::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.
Overrides Reader::getMethodAnnotations
1 call to AnnotationReader::getMethodAnnotations()
- AnnotationReader::getMethodAnnotation in modules/
providers/ service_container_annotation_discovery/ lib/ Doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ AnnotationReader.php - Gets a method annotation.
File
- modules/
providers/ service_container_annotation_discovery/ lib/ Doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ AnnotationReader.php, line 247
Class
- AnnotationReader
- A reader for docblock annotations.
Namespace
Doctrine\Common\AnnotationsCode
public function getMethodAnnotations(ReflectionMethod $method) {
$class = $method
->getDeclaringClass();
$context = 'method ' . $class
->getName() . '::' . $method
->getName() . '()';
$this->parser
->setTarget(Target::TARGET_METHOD);
$this->parser
->setImports($this
->getMethodImports($method));
$this->parser
->setIgnoredAnnotationNames($this
->getIgnoredAnnotationNames($class));
return $this->parser
->parse($method
->getDocComment(), $context);
}