1 | <?php |
||
8 | class Module implements ConfigProviderInterface, DependencyIndicatorInterface |
||
9 | { |
||
10 | /** |
||
11 | * Returns configuration to merge with application configuration |
||
12 | * |
||
13 | * @return array|\Traversable |
||
14 | */ |
||
15 | 1 | public function getConfig() |
|
19 | |||
20 | /** |
||
21 | * Expected to return an array of modules on which the current one depends on |
||
22 | * |
||
23 | * @return array |
||
24 | */ |
||
25 | 1 | public function getModuleDependencies() |
|
32 | } |
||
33 |