private function AnnotationReader::getIgnoredAnnotationNames

Returns the ignored annotations for the given class.

Parameters

ReflectionClass $class:

Return value

array

3 calls to AnnotationReader::getIgnoredAnnotationNames()
AnnotationReader::getClassAnnotations in drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Annotations/AnnotationReader.php
Gets the annotations applied to a class.
AnnotationReader::getMethodAnnotations in drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Annotations/AnnotationReader.php
Gets the annotations applied to a method.
AnnotationReader::getPropertyAnnotations in drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Annotations/AnnotationReader.php
Gets the annotations applied to a property.

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Annotations/AnnotationReader.php, line 258

Class

AnnotationReader
A reader for docblock annotations.

Namespace

Doctrine\Common\Annotations

Code

private function getIgnoredAnnotationNames(ReflectionClass $class) {
  if (isset($this->ignoredAnnotationNames[$name = $class
    ->getName()])) {
    return $this->ignoredAnnotationNames[$name];
  }
  $this
    ->collectParsingMetadata($class);
  return $this->ignoredAnnotationNames[$name];
}