| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | protected function getPluginManager() |
||
| 18 | { |
||
| 19 | $parent = new ServiceManager(); |
||
| 20 | $manager = new ComposerPluginManager($parent); |
||
| 21 | $configArray = include __DIR__ . '/../../../config/module.config.php'; |
||
| 22 | $config = new Config($configArray['mt_mail']['composer_plugin_manager']); |
||
| 23 | $config->configureServiceManager($manager); |
||
| 24 | $parent->setService('Configuration', $configArray); |
||
| 25 | return $manager; |
||
| 26 | } |
||
| 27 | |||
| 38 |