Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 55.56% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class NormalizerNotFound extends \RuntimeException |
||
18 | { |
||
19 | /** @var Type */ |
||
20 | private $type; |
||
21 | /** @var string */ |
||
22 | private $format; |
||
23 | |||
24 | 2 | public function __construct(Type $type, string $format) { |
|
28 | 2 | } |
|
29 | |||
30 | public function getType(): Type { |
||
31 | return $this->type; |
||
32 | } |
||
33 | |||
34 | public function getFormat(): string { |
||
36 | } |
||
37 | } |
||
38 |