Total Complexity | 7 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
15 | final class RoutingConfigLoader implements ConfigLoaderInterface |
||
16 | { |
||
17 | private RouterContainer $router; |
||
18 | |||
19 | private ConfigProviderInterface $configProvider; |
||
20 | |||
21 | public function __construct(RouterContainer $router, ConfigProviderInterface $configProvider) |
||
22 | { |
||
23 | $this->router = $router; |
||
24 | $this->configProvider = $configProvider; |
||
25 | } |
||
26 | |||
27 | public function load(array $locations, array $sources): array |
||
49 | } |
||
50 | } |
||
51 |