Total Complexity | 4 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
10 | final class ContainerException extends Exception implements ContainerExceptionInterface |
||
11 | { |
||
12 | public static function circularDependency(): ContainerException |
||
13 | { |
||
14 | return new self('Detect Circular Dependency'); |
||
15 | } |
||
16 | |||
17 | public static function findType(?string $type): ContainerException |
||
20 | } |
||
21 | |||
22 | public static function shareOnMake(string $id): ContainerException |
||
27 |