public function SimpleAnnotationReader::getMethodAnnotation

Gets a method annotation.

Parameters

\ReflectionMethod $method:

string $annotationName The name of the annotation.:

Return value

mixed The Annotation or NULL, if the requested annotation does not exist.

Overrides Reader::getMethodAnnotation

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Annotations/SimpleAnnotationReader.php, line 129

Class

SimpleAnnotationReader
Simple Annotation Reader.

Namespace

Doctrine\Common\Annotations

Code

public function getMethodAnnotation(\ReflectionMethod $method, $annotationName) {
  foreach ($this
    ->getMethodAnnotations($method) as $annot) {
    if ($annot instanceof $annotationName) {
      return $annot;
    }
  }
  return null;
}