| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function createService(ServiceLocatorInterface $serviceLocator, $canonicalName = null, $requestedName = null) |
||
| 16 | { |
||
| 17 | $service = parent::createService($serviceLocator); |
||
| 18 | $config = $serviceLocator->get('Config'); |
||
| 19 | |||
| 20 | $pluginManagerConfig = $config['reports']; |
||
| 21 | |||
| 22 | $config = new ServiceManagerConfig($pluginManagerConfig); |
||
| 23 | $config->configureServiceManager($service); |
||
| 24 | |||
| 25 | return $service; |
||
| 26 | } |
||
| 27 | } |