Total Complexity | 3 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | class ValueNodeParser extends AbstractNodeParser |
||
29 | { |
||
30 | /** |
||
31 | * Parse a node to update the parent node model. |
||
32 | * |
||
33 | * @param mixed $node The node to parse. |
||
34 | * @param NodeInterface $parent The parent node. |
||
35 | * |
||
36 | * This method do nothing because parsing expr is hard and useless for PhpUnitGen. |
||
37 | */ |
||
38 | public function invoke($node, NodeInterface $parent): void |
||
45 |