| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
| 26 | { |
||
| 27 | $helper = new JobUrl(); |
||
| 28 | $url = $serviceLocator->get('url'); |
||
| 29 | $params = $serviceLocator->get('params'); |
||
| 30 | $serverUrl = $serviceLocator->get('serverUrl'); |
||
| 31 | $helper->setUrlHelper($url) |
||
| 32 | ->setParamsHelper($params) |
||
| 33 | ->setServerUrlHelper($serverUrl); |
||
| 34 | return $helper; |
||
| 35 | } |
||
| 36 | } |
||
| 37 |