You are here

function Reader::getClassAnnotations in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Reader.php \Doctrine\Common\Annotations\Reader::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.

5 methods override Reader::getClassAnnotations()
AnnotationReader::getClassAnnotations in vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php
Gets the annotations applied to a class.
CachedReader::getClassAnnotations in vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/CachedReader.php
Gets the annotations applied to a class.
FileCacheReader::getClassAnnotations in vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/FileCacheReader.php
Gets the annotations applied to a class.
IndexedReader::getClassAnnotations in vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/IndexedReader.php
Gets the annotations applied to a class.
SimpleAnnotationReader::getClassAnnotations in vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/SimpleAnnotationReader.php
Gets the annotations applied to a class.

File

vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Reader.php, line 37

Class

Reader
Interface for annotation readers.

Namespace

Doctrine\Common\Annotations

Code

function getClassAnnotations(\ReflectionClass $class);