Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | final class CompositeNotFoundException extends Exception implements NotFoundExceptionInterface |
||
16 | { |
||
17 | /** |
||
18 | * @param array $exceptions Container exceptions in [throwable, container] format. |
||
19 | * |
||
20 | * @psalm-param list<array{\Throwable,ContainerInterface}> $exceptions |
||
21 | */ |
||
22 | 8 | public function __construct(array $exceptions) |
|
37 |