DocLexer::$noCase

@var array<string, self::T*>

Type: noCase

File

core/lib/Drupal/Component/Annotation/Doctrine/DocLexer.php, line 68

Class

DocLexer
Simple lexer for docblock annotations.

Namespace

Drupal\Component\Annotation\Doctrine

Code

protected $noCase = [
  '@' => self::T_AT,
  ',' => self::T_COMMA,
  '(' => self::T_OPEN_PARENTHESIS,
  ')' => self::T_CLOSE_PARENTHESIS,
  '{' => self::T_OPEN_CURLY_BRACES,
  '}' => self::T_CLOSE_CURLY_BRACES,
  '=' => self::T_EQUALS,
  ':' => self::T_COLON,
  '-' => self::T_MINUS,
  '\\' => self::T_NAMESPACE_SEPARATOR,
];

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.