You are here

public static function AnnotationReader::addGlobalIgnoredName in Service Container 7

Same name and namespace in other branches
  1. 7.2 modules/providers/service_container_annotation_discovery/lib/Doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php \Doctrine\Common\Annotations\AnnotationReader::addGlobalIgnoredName()

Add a new annotation to the globally ignored annotation names with regard to exception handling.

Parameters

string $name:

File

modules/providers/service_container_annotation_discovery/lib/Doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php, line 110

Class

AnnotationReader
A reader for docblock annotations.

Namespace

Doctrine\Common\Annotations

Code

public static function addGlobalIgnoredName($name) {
  self::$globalIgnoredNames[$name] = true;
}