Total Complexity | 2 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class FrameworkProvider implements ProviderInterface |
||
15 | { |
||
16 | /** |
||
17 | * Class name of the bridge provider. |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $provider = ''; |
||
22 | |||
23 | /** |
||
24 | * Configuration path for the providers. |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $providers = ''; |
||
29 | |||
30 | /** |
||
31 | * Registers the bindings in the container. |
||
32 | * |
||
33 | * @param \Zapheus\Container\WritableInterface $container |
||
34 | * @return \Zapheus\Container\ContainerInterface |
||
35 | */ |
||
36 | 9 | public function register(WritableInterface $container) |
|
52 |