| Total Complexity | 4 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 14 | class NonCompliantDecoder extends Decoder |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var bool Whether current dictionary needs to be sorted |
||
| 18 | */ |
||
| 19 | protected bool $sortDictionary = false; |
||
| 20 | |||
| 21 | 7 | protected function complianceError(string $message, int $offset): void |
|
| 22 | { |
||
| 23 | // Do nothing |
||
| 24 | 7 | } |
|
| 25 | |||
| 26 | 4 | protected function decodeDictionary(): ArrayObject |
|
| 38 | } |
||
| 39 | |||
| 40 | 4 | protected function dictionaryComplianceError(string $key, string $lastKey): void |
|
| 43 | } |
||
| 44 | } |