| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | public function configure(ContainerInterface $container) |
||
| 24 | { |
||
| 25 | /* @var LazyPDO $lazyPdo */ |
||
| 26 | $lazyPdo = $container->get(LazyPDO::class); |
||
| 27 | |||
| 28 | /* @var EventDispatcher $eventDispatcher */ |
||
| 29 | $eventDispatcher = $container->get(EventDispatcher::class); |
||
| 30 | $eventDispatcher->addSubscriber(new InstallSubscriber($lazyPdo)); |
||
| 31 | $eventDispatcher->addSubscriber(new FindExecutableDefinitionsSubscriber($lazyPdo, new DocBlock())); |
||
| 32 | $eventDispatcher->addSubscriber(new PostDispatchDeploymentSubscriber($lazyPdo)); |
||
| 33 | } |
||
| 35 | } |