| Total Complexity | 7 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 12 | class Utf8 extends BaseImplementation |
||
| 13 | { |
||
| 14 | /** {@inheritdoc} */ |
||
| 15 | protected $maxValue = 0x10FFFF; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * {@inheritdoc} |
||
| 19 | */ |
||
| 20 | 9 | protected function outputValidValue(int $value): string |
|
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritdoc} |
||
| 44 | */ |
||
| 45 | 12 | protected function validate(int $value): void |
|
| 53 | } |
||
| 54 | } |