Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 83.33% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class DispatcherProvider implements ProviderInterface |
||
17 | { |
||
18 | const COMPOSITE = 'App\Zapheus\CompositeRouter'; |
||
19 | |||
20 | const DISPATCHER = 'Zapheus\Routing\DispatcherInterface'; |
||
21 | |||
22 | /** |
||
23 | * Registers the bindings in the container. |
||
24 | * |
||
25 | * @param \Zapheus\Container\WritableInterface $container |
||
26 | * @return \Zapheus\Container\ContainerInterface |
||
27 | */ |
||
28 | 6 | public function register(WritableInterface $container) |
|
39 |