Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | final class Constant extends Token |
||
12 | { |
||
13 | /** |
||
14 | * Mutate the given state |
||
15 | * |
||
16 | * @param State $state |
||
17 | * @return void |
||
18 | */ |
||
19 | 103 | public function mutateState(State $state): void |
|
22 | } |
||
23 | |||
24 | /** |
||
25 | * Determine whether this token ends a JSON chunk |
||
26 | * |
||
27 | * @return bool |
||
28 | */ |
||
29 | 103 | public function endsChunk(): bool |
|
34 |