| Total Complexity | 2 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | final class OptionalNode extends Node |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @param Node $body |
||
| 20 | * @param int $lineNumber |
||
| 21 | * @param string $tag |
||
| 22 | */ |
||
| 23 | 1 | public function __construct(Node $body, int $lineNumber, string $tag) |
|
| 26 | 1 | } |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @param Compiler $compiler |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | 1 | public function compile(Compiler $compiler): void |
|
| 59 |