Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 50% |
Changes | 0 |
1 | <?php |
||
18 | class NotImplementedStatement extends Statement |
||
19 | { |
||
20 | /** |
||
21 | * The part of the statement that can't be parsed. |
||
22 | * |
||
23 | * @var Token[] |
||
24 | */ |
||
25 | public array $unknown = []; |
||
26 | |||
27 | public function build(): string |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * @param Parser $parser the instance that requests parsing |
||
42 | * @param TokensList $list the list of tokens to be parsed |
||
43 | */ |
||
44 | 2 | public function parse(Parser $parser, TokensList $list): void |
|
55 |