Overrides Reader::getMethodAnnotations
public function getMethodAnnotations(ReflectionMethod $method) { $annotations = []; foreach ($this->delegate ->getMethodAnnotations($method) as $annot) { $annotations[get_class($annot)] = $annot; } return $annotations; }