Doctrine\Common\Annotations\AnnotationReader::getIgnoredAnnotationNames PHP Method

getIgnoredAnnotationNames() private method

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