| Total Complexity | 5 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | final class NotFoundException extends Exception implements NotFoundExceptionInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @param string $id ID of the definition or name of the class that was not found. |
||
| 18 | * @param string[] $buildStack Stack of IDs of services requested definition or class that was not found. |
||
| 19 | */ |
||
| 20 | 19 | public function __construct( |
|
| 38 | } |
||
| 39 | |||
| 40 | 12 | public function getId(): string |
|
| 41 | { |
||
| 42 | 12 | return $this->id; |
|
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return string[] |
||
| 47 | */ |
||
| 48 | 2 | public function getBuildStack(): array |
|
| 51 | } |
||
| 52 | } |
||
| 53 |