| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | final class CompositeNotFoundException extends Exception implements NotFoundExceptionInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @param array $exceptions Exceptions of containers in [throwable, container] format. |
||
| 18 | * @psalm-param array $exceptions |
||
| 19 | */ |
||
| 20 | 7 | public function __construct(array $exceptions) |
|
| 35 |