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