private function AnnotationReader::getIgnoredAnnotationNames in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php \Doctrine\Common\Annotations\AnnotationReader::getIgnoredAnnotationNames()
Returns the ignored annotations for the given class.
Parameters
\ReflectionClass $class:
Return value
array
3 calls to AnnotationReader::getIgnoredAnnotationNames()
- AnnotationReader::getClassAnnotations in vendor/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ AnnotationReader.php - Gets the annotations applied to a class.
- AnnotationReader::getMethodAnnotations in vendor/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ AnnotationReader.php - Gets the annotations applied to a method.
- AnnotationReader::getPropertyAnnotations in vendor/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ AnnotationReader.php - Gets the annotations applied to a property.
File
- vendor/
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];
}