You are here

protected function DocLexer::getNonCatchablePatterns in Plug 7

Lexical non-catchable patterns.

Return value

array

Overrides AbstractLexer::getNonCatchablePatterns

File

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

Class

DocLexer
Simple lexer for docblock annotations.

Namespace

Doctrine\Common\Annotations

Code

protected function getNonCatchablePatterns() {
  return array(
    '\\s+',
    '\\*+',
    '(.)',
  );
}