Gets a method annotation.
ReflectionMethod $method:
string $annotationName The name of the annotation.:
mixed The Annotation or NULL, if the requested annotation does not exist.
Overrides Reader::getMethodAnnotation
public function getMethodAnnotation(ReflectionMethod $method, $annotationName) {
$annotations = $this
->getMethodAnnotations($method);
foreach ($annotations as $annotation) {
if ($annotation instanceof $annotationName) {
return $annotation;
}
}
return null;
}