You are here

protected property SimpleAnnotationReader::$ignoredAnnotations in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Component/Annotation/Doctrine/SimpleAnnotationReader.php \Drupal\Component\Annotation\Doctrine\SimpleAnnotationReader::ignoredAnnotations
  2. 10 core/lib/Drupal/Component/Annotation/Doctrine/SimpleAnnotationReader.php \Drupal\Component\Annotation\Doctrine\SimpleAnnotationReader::ignoredAnnotations

File

core/lib/Drupal/Component/Annotation/Doctrine/SimpleAnnotationReader.php, line 42
This class is a near-copy of Doctrine\Common\Annotations\SimpleAnnotationReader, which is part of the Doctrine project: <http://www.doctrine-project.org>. It was copied from version 1.2.7.

Class

SimpleAnnotationReader
Simple Annotation Reader.

Namespace

Drupal\Component\Annotation\Doctrine

Code

protected $ignoredAnnotations = [
  'addtogroup' => TRUE,
  'code' => TRUE,
  'defgroup' => TRUE,
  'deprecated' => TRUE,
  'endcode' => TRUE,
  'endlink' => TRUE,
  'file' => TRUE,
  'ingroup' => TRUE,
  'group' => TRUE,
  'link' => TRUE,
  'mainpage' => TRUE,
  'param' => TRUE,
  'ref' => TRUE,
  'return' => TRUE,
  'section' => TRUE,
  'see' => TRUE,
  'subsection' => TRUE,
  'throws' => TRUE,
  'todo' => TRUE,
  'var' => TRUE,
  '{' => TRUE,
  '}' => TRUE,
];