protected function DocLexer::getNonCatchablePatterns 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::getNonCatchablePatterns()
Lexical non-catchable patterns.
Return value
array
Overrides AbstractLexer::getNonCatchablePatterns
File
- vendor/
doctrine/ annotations/ lib/ Doctrine/ Common/ Annotations/ DocLexer.php, line 94
Class
- DocLexer
- Simple lexer for docblock annotations.
Namespace
Doctrine\Common\AnnotationsCode
protected function getNonCatchablePatterns() {
return array(
'\\s+',
'\\*+',
'(.)',
);
}