Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | class RouteProvider implements RouteProviderInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var PluginCollection |
||
15 | */ |
||
16 | private $pluginCollection; |
||
17 | |||
18 | /** |
||
19 | * @var \Xervice\Routing\Business\RoutingFacade |
||
20 | */ |
||
21 | private $routingFacade; |
||
22 | |||
23 | /** |
||
24 | * RouteProvider constructor. |
||
25 | * |
||
26 | * @param \Xervice\Web\Business\Dependency\Plugin\PluginCollection $pluginCollection |
||
27 | * @param \Xervice\Routing\Business\RoutingFacade $routingFacade |
||
28 | */ |
||
29 | 2 | public function __construct( |
|
35 | 2 | } |
|
36 | |||
37 | 2 | public function provideRoutings(): void |
|
48 | } |