| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 12 | class CouldNotConvertException extends ApieException implements LocalizationableException |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $wantedType; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | private $displayValue; |
||
| 23 | |||
| 24 | public function __construct(string $wantedType, string $displayValue) |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getI18n(): LocalizationInfo |
||
| 39 |