public function AnnotationReader::getClassAnnotations

Gets the annotations applied to a class.

Parameters

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

Return value

array An array of Annotations.

Overrides Reader::getClassAnnotations

1 call to AnnotationReader::getClassAnnotations()
AnnotationReader::getClassAnnotation in drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Annotations/AnnotationReader.php
Gets a class annotation.

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Annotations/AnnotationReader.php, line 145

Class

AnnotationReader
A reader for docblock annotations.

Namespace

Doctrine\Common\Annotations

Code

public function getClassAnnotations(ReflectionClass $class) {
  $this->parser
    ->setTarget(Target::TARGET_CLASS);
  $this->parser
    ->setImports($this
    ->getImports($class));
  $this->parser
    ->setIgnoredAnnotationNames($this
    ->getIgnoredAnnotationNames($class));
  return $this->parser
    ->parse($class
    ->getDocComment(), 'class ' . $class
    ->getName());
}