Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | final class BuildingException extends Exception implements ContainerExceptionInterface |
||
16 | { |
||
17 | /** |
||
18 | * @param string $id ID of the definition or name of the class that wasn't found. |
||
19 | * @param string[] $buildStack Stack of IDs of services requested definition or class that wasn't found. |
||
20 | */ |
||
21 | 6 | public function __construct( |
|
36 |