| Total Complexity | 2 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class ConfigServiceProvider implements ServiceProviderInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param \Pimple\Container $container |
||
| 14 | * |
||
| 15 | * @return void |
||
| 16 | */ |
||
| 17 | public function register(Container $container): void |
||
| 18 | { |
||
| 19 | $this->registerConfigFacade($container); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param \Pimple\Container $container |
||
| 24 | * |
||
| 25 | * @return \Jellyfish\Config\ConfigServiceProvider |
||
| 26 | */ |
||
| 27 | public function registerConfigFacade(Container $container): ConfigServiceProvider |
||
| 39 | } |
||
| 40 | } |
||
| 41 |