| Total Complexity | 3 | 
| Total Lines | 32 | 
| Duplicated Lines | 0 % | 
| Coverage | 77.78% | 
| Changes | 2 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 14 | final class Module implements  | 
            ||
| 15 | ConfigProviderInterface,  | 
            ||
| 16 | DependencyIndicatorInterface,  | 
            ||
| 17 | InitProviderInterface  | 
            ||
| 18 | { | 
            ||
| 19 | /**  | 
            ||
| 20 |      * {@inheritDoc} | 
            ||
| 21 | */  | 
            ||
| 22 | 1 | public function getConfig(): iterable  | 
            |
| 23 |     { | 
            ||
| 24 | 1 | return require __DIR__ . '/../config/module.config.php';  | 
            |
| 25 | }  | 
            ||
| 26 | |||
| 27 | /**  | 
            ||
| 28 |      * {@inheritDoc} | 
            ||
| 29 | */  | 
            ||
| 30 | public function getModuleDependencies(): array  | 
            ||
| 33 | }  | 
            ||
| 34 | |||
| 35 | /**  | 
            ||
| 36 |      * {@inheritDoc} | 
            ||
| 37 | */  | 
            ||
| 38 | 1 | public function init(ModuleManagerInterface $manager): void  | 
            |
| 46 | );  | 
            ||
| 47 | }  | 
            ||
| 49 |