| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 8 | class InvalidIdException extends ApieException implements LocalizationableException |
||
| 9 | { |
||
| 10 | private $id; |
||
| 11 | |||
| 12 | public function __construct(string $id) |
||
| 13 | { |
||
| 14 | $this->id = $id; |
||
| 15 | parent::__construct(500, 'Id "' . $id . '" is not valid as identifier'); |
||
| 16 | } |
||
| 17 | |||
| 18 | public function getI18n(): LocalizationInfo |
||
| 24 | ] |
||
| 25 | ); |
||
| 28 |