| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | protected function getPluginManager() |
||
| 25 | { |
||
| 26 | $parent = new ServiceManager(); |
||
| 27 | $manager = new ComposerPluginManager($parent); |
||
| 28 | $configArray = include __DIR__ . '/../../../config/module.config.php'; |
||
| 29 | $config = new Config($configArray['mt_mail']['composer_plugin_manager']); |
||
| 30 | $config->configureServiceManager($manager); |
||
| 31 | $parent->setService('Configuration', $configArray); |
||
| 32 | return $manager; |
||
| 33 | } |
||
| 34 | |||
| 45 |