Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
20 | class InvalidTypeException extends \UnexpectedValueException implements ClientAware |
||
21 | { |
||
22 | /** |
||
23 | * InvalidTypeException constructor. |
||
24 | * |
||
25 | * @param string $type |
||
26 | */ |
||
27 | public function __construct($type) |
||
28 | { |
||
29 | parent::__construct(sprintf('Can`t find a valid type for "%s"', $type)); |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @inheritDoc |
||
34 | */ |
||
35 | public function isClientSafe() |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * @inheritDoc |
||
42 | */ |
||
43 | public function getCategory() |
||
46 | } |
||
47 | } |
||
48 |