Total Complexity | 3 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
5 | final class RoutingProviderCollection implements RoutingProviderInterface |
||
6 | { |
||
7 | /** @var RoutingProviderInterface[] */ |
||
8 | private array $routingProviders; |
||
9 | |||
10 | 3 | public function __construct(RoutingProviderInterface ...$routingProviders) |
|
13 | } |
||
14 | |||
15 | 2 | public function registerRoutes(RouterInterface $router): void |
|
21 | } |