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