Overrides Reader::getPropertyAnnotation
public function getPropertyAnnotation(\ReflectionProperty $property, $annotationName) { foreach ($this->getPropertyAnnotations($property) as $annotation) { if ($annotation instanceof $annotationName) { return $annotation; } } return null; }