| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 28 | public function createService(ServiceLocatorInterface $controllerManager) |
||
| 29 | { |
||
| 30 | /* @var \Zend\Mvc\Controller\PluginManager $controllerManager */ |
||
| 31 | $serviceLocator = $controllerManager->getServiceLocator(); |
||
| 32 | |||
| 33 | /* @var ModuleOptions $options */ |
||
| 34 | $options = $serviceLocator->get('Geo/Options'); |
||
| 35 | |||
| 36 | $controller = new IndexController($options); |
||
| 37 | return $controller; |
||
| 38 | } |
||
| 39 | } |