Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
21 | { |
||
22 | //get parent locator |
||
23 | $serviceLocator = $serviceLocator->getServiceLocator(); |
||
24 | |||
25 | return new RunningBalanceCliController( |
||
26 | $serviceLocator->get('JhUser\Repository\UserRepository'), |
||
27 | $serviceLocator->get('JhFlexiTime\Service\RunningBalanceService'), |
||
28 | $serviceLocator->get('Console') |
||
29 | ); |
||
30 | } |
||
31 | } |
||
32 |