You are here

protected property DocLexer::$noCase in Plug 7

Type: array

File

lib/doctrine/annotations/lib/Doctrine/Common/Annotations/DocLexer.php, line 58

Class

DocLexer
Simple lexer for docblock annotations.

Namespace

Doctrine\Common\Annotations

Code

protected $noCase = array(
  '@' => 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_NAMESPACE_SEPARATOR,
);