1 | <?php |
||
17 | class Module implements |
||
18 | ConfigProviderInterface, |
||
19 | AutoloaderProviderInterface, |
||
20 | ConsoleUsageProviderInterface, |
||
21 | DependencyIndicatorInterface |
||
22 | { |
||
23 | |||
24 | /** |
||
25 | * @param EventInterface $e |
||
26 | */ |
||
27 | public function onBootstrap(EventInterface $e) |
||
42 | |||
43 | /** |
||
44 | * @param EventInterface $e |
||
45 | */ |
||
46 | public function onRegister(EventInterface $e) |
||
59 | |||
60 | /** |
||
61 | * {@inheritDoc} |
||
62 | */ |
||
63 | public function getConfig() |
||
67 | |||
68 | /** |
||
69 | * {@inheritDoc} |
||
70 | */ |
||
71 | public function getAutoloaderConfig() |
||
81 | |||
82 | /** |
||
83 | * {@inheritDoc} |
||
84 | */ |
||
85 | public function getModuleDependencies() |
||
95 | |||
96 | |||
97 | /** |
||
98 | * @param Console $console |
||
99 | * @return array|null|string |
||
100 | */ |
||
101 | public function getConsoleUsage(Console $console) |
||
107 | } |
||
108 |