Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class NonUnicodeCharacterException extends RuntimeException implements ExceptionInterface |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * @var int |
||
18 | */ |
||
19 | private $character; |
||
20 | |||
21 | 5 | public function __construct(int $character, Throwable $previous = null) |
|
25 | 5 | } |
|
26 | |||
27 | 5 | private function buildMessage(): string |
|
32 | } |
||
33 | |||
34 | 1 | public function getCharacter(): int |
|
39 |