You are here

public function AnnotationReader::getClassAnnotation in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php \Doctrine\Common\Annotations\AnnotationReader::getClassAnnotation()

Gets a class annotation.

Parameters

\ReflectionClass $class The ReflectionClass of the class from which: the class annotations should be read.

string $annotationName The name of the annotation.:

Return value

object|null The Annotation or NULL, if the requested annotation does not exist.

Overrides Reader::getClassAnnotation

File

vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php, line 201

Class

AnnotationReader
A reader for docblock annotations.

Namespace

Doctrine\Common\Annotations

Code

public function getClassAnnotation(ReflectionClass $class, $annotationName) {
  $annotations = $this
    ->getClassAnnotations($class);
  foreach ($annotations as $annotation) {
    if ($annotation instanceof $annotationName) {
      return $annotation;
    }
  }
  return null;
}