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