| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class NotFoundException extends Exception implements NotFoundExceptionInterface |
||
| 14 | { |
||
| 15 | private string $id; |
||
| 16 | |||
| 17 | public function __construct(string $id) |
||
| 18 | { |
||
| 19 | $this->id = $id; |
||
| 20 | parent::__construct("No definition or class found for \"$id\"."); |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getId(): string |
||
| 26 | } |
||
| 27 | } |
||
| 28 |