Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class NotFoundException extends Exception implements NotFoundExceptionInterface |
||
14 | { |
||
15 | private string $id; |
||
16 | |||
17 | /** |
||
18 | * @param string $id ID of the definition or name of the class that was not found. |
||
19 | * @param array $buildStack Stack of IDs of services requested definition or class that was not found. |
||
20 | */ |
||
21 | 10 | public function __construct(string $id, array $buildStack = []) |
|
33 | 10 | } |
|
34 | |||
35 | 1 | public function getId(): string |
|
40 |