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