1 | <?php |
||
9 | class ContainerException extends \RuntimeException implements |
||
10 | ContainerExceptionInterface |
||
11 | { |
||
12 | const COULD_NOT_MAKE = 1; |
||
13 | const EXPECTED_INVOKABLE = 2; |
||
14 | |||
15 | 1 | public static function couldNotMake(string $class, InjectorException $previous): ContainerException |
|
19 | |||
20 | 41 | public static function expectedInvokable(string $class): ContainerException |
|
24 | } |
||
25 |