Total Complexity | 4 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class Collection implements DateLexerInterface |
||
13 | { |
||
14 | /** |
||
15 | * Lexer list. |
||
16 | * |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $lexers = []; |
||
20 | |||
21 | /** |
||
22 | * Add a lexer. |
||
23 | * |
||
24 | * @param DateLexerInterface $lexer |
||
25 | */ |
||
26 | public function addLexer(DateLexerInterface $lexer) |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @inheritDoc |
||
33 | */ |
||
34 | public function tokenizeDate($string, $offset = 0) |
||
50 |