function DocParser::setIgnoredAnnotationNames
Same name in this branch
- 11.1.x core/lib/Drupal/Component/Annotation/Doctrine/DocParser.php \Drupal\Component\Annotation\Doctrine\DocParser::setIgnoredAnnotationNames()
Sets the annotation names that are ignored during the parsing process.
The names are supposed to be the raw names as used in the class, not the fully qualified class names.
Parameters
bool[] $names indexed by annotation name:
Return value
void
File
-
vendor/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ DocParser.php, line 279
Class
- DocParser
- A parser for docblock annotations.
Namespace
Doctrine\Common\AnnotationsCode
public function setIgnoredAnnotationNames(array $names) {
$this->ignoredAnnotationNames = $names;
}