| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 38 | 1 | public function init(ModuleManagerInterface $manager): void |
|
| 39 | { |
||
| 40 | 1 | $sharedEventManager = $manager->getEventManager()->getSharedManager(); |
|
| 41 | 1 | $listener = new Listener\RegisterProxyDriverListener(); |
|
| 42 | 1 | $sharedEventManager->attach( |
|
| 43 | 1 | Application::class, |
|
| 44 | 1 | MvcEvent::EVENT_BOOTSTRAP, |
|
| 45 | 1 | [$listener, 'onBootstrap'] |
|
| 46 | ); |
||
| 49 |