Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function parse(Parser $parser) |
||
30 | { |
||
31 | $parser->match(Lexer::T_IDENTIFIER); |
||
32 | $parser->match(Lexer::T_OPEN_PARENTHESIS); |
||
33 | $this->date = $parser->ArithmeticExpression(); |
||
34 | $parser->match(Lexer::T_COMMA); |
||
35 | $this->pattern = $parser->StringPrimary(); |
||
36 | $parser->match(Lexer::T_CLOSE_PARENTHESIS); |
||
37 | } |
||
38 | |||
44 |