Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class ClosureExpressionParser extends ExpressionParser |
||
21 | { |
||
22 | /** |
||
23 | * @inerhitdoc |
||
24 | */ |
||
25 | public function parseExpression($precedence = 0, $allowArrow = true) |
||
26 | { |
||
27 | return parent::parseExpression($precedence, $allowArrow); |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @inerhitdoc |
||
32 | */ |
||
33 | public function parseArguments($namedArguments = false, $definition = false, $allowArrow = true) |
||
36 | } |
||
37 | } |
||
38 |