public function SimpleAnnotationReader::getClassAnnotations in Service Container 7.2
Same name and namespace in other branches
- 7 modules/providers/service_container_annotation_discovery/lib/Doctrine/annotations/lib/Doctrine/Common/Annotations/SimpleAnnotationReader.php \Doctrine\Common\Annotations\SimpleAnnotationReader::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 SimpleAnnotationReader::getClassAnnotations()
- SimpleAnnotationReader::getClassAnnotation in modules/
providers/ service_container_annotation_discovery/ lib/ Doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ SimpleAnnotationReader.php - Gets a class annotation.
File
- modules/
providers/ service_container_annotation_discovery/ lib/ Doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ SimpleAnnotationReader.php, line 65
Class
- SimpleAnnotationReader
- Simple Annotation Reader.
Namespace
Doctrine\Common\AnnotationsCode
public function getClassAnnotations(\ReflectionClass $class) {
return $this->parser
->parse($class
->getDocComment(), 'class ' . $class
->getName());
}