Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
19 | 1 | public function createService(ServiceLocatorInterface $serviceLocator) |
|
20 | { |
||
21 | /** @var ServiceOptions $options */ |
||
22 | 1 | $options = $serviceLocator->get('BsbPhingService.serviceOptions'); |
|
23 | /** @var PhingOptions $phingOptions */ |
||
24 | 1 | $phingOptions = $serviceLocator->get('BsbPhingService.phingOptions'); |
|
25 | |||
26 | 1 | return new PhingService($options, $phingOptions); |
|
27 | } |
||
28 | } |
||
29 |