| 1 | <?php |
||
| 15 | class Module implements ConfigProviderInterface, BootstrapListenerInterface |
||
| 16 | { |
||
| 17 | |||
| 18 | /** |
||
| 19 | * {@inheritdoc} |
||
| 20 | */ |
||
| 21 | public function getConfig() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Listen to the bootstrap event |
||
| 28 | * |
||
| 29 | * @param EventInterface $e |
||
| 30 | * @return array |
||
| 31 | * @throws \Interop\Container\Exception\NotFoundException |
||
| 32 | * @throws \Interop\Container\Exception\ContainerException |
||
| 33 | */ |
||
| 34 | public function onBootstrap(EventInterface $e) |
||
| 52 | } |
||
| 53 |