protected property DocLexer::$noCase in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocLexer.php \Doctrine\Common\Annotations\DocLexer::noCase
Type: array
File
- vendor/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ DocLexer.php, line 58
Class
- DocLexer
- Simple lexer for docblock annotations.
Namespace
Doctrine\Common\AnnotationsCode
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,
);