Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
16 | 1 | public function indexAction() |
|
17 | { |
||
18 | 1 | $buildResult = $this |
|
19 | 1 | ->getServiceLocator() |
|
20 | 1 | ->get('BsbPhingService') |
|
21 | 1 | ->build('show-defaults dist' /* target */, array( |
|
22 | 'buildFile' => __DIR__ . '/../../data/build-example.xml' |
||
23 | 1 | )); |
|
24 | |||
25 | 1 | $view = new ViewModel(); |
|
26 | 1 | $view->setVariable('process', $buildResult); |
|
27 | |||
28 | 1 | return $view; |
|
29 | } |
||
30 | } |
||
31 |