Doctrine\Common\Annotations\AnnotationReader::getIgnoredAnnotationNames PHP Méthode

getIgnoredAnnotationNames() private méthode

Returns the ignored annotations for the given class.
private getIgnoredAnnotationNames ( ReflectionClass $class ) : array
$class ReflectionClass
Résultat array
    private function getIgnoredAnnotationNames(ReflectionClass $class)
    {
        if (isset($this->ignoredAnnotationNames[$name = $class->getName()])) {
            return $this->ignoredAnnotationNames[$name];
        }
        $this->collectParsingMetadata($class);
        return $this->ignoredAnnotationNames[$name];
    }