private function AnnotationReader::getIgnoredAnnotationNames in Plug 7
Returns the ignored annotations for the given class.
Parameters
\ReflectionClass $class:
Return value
array
3 calls to AnnotationReader::getIgnoredAnnotationNames()
- AnnotationReader::getClassAnnotations in lib/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ AnnotationReader.php - Gets the annotations applied to a class.
- AnnotationReader::getMethodAnnotations in lib/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ AnnotationReader.php - Gets the annotations applied to a method.
- AnnotationReader::getPropertyAnnotations in lib/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ AnnotationReader.php - Gets the annotations applied to a property.
File
- lib/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ AnnotationReader.php, line 283
Class
- AnnotationReader
- A reader for docblock annotations.
Namespace
Doctrine\Common\AnnotationsCode
private function getIgnoredAnnotationNames(ReflectionClass $class) {
if (isset($this->ignoredAnnotationNames[$name = $class
->getName()])) {
return $this->ignoredAnnotationNames[$name];
}
$this
->collectParsingMetadata($class);
return $this->ignoredAnnotationNames[$name];
}