Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
50 | protected function execute(InputInterface $input, OutputInterface $output) |
||
51 | { |
||
52 | try { |
||
53 | $this->projectManager->start($this->project); |
||
54 | } catch (ProjectException $e) { |
||
55 | $output->writeln('<error>'.$e->getMessage().'</error>'); |
||
56 | |||
57 | return 1; |
||
58 | } |
||
59 | |||
60 | return $this->getApplication()->run( |
||
61 | new ArrayInput(['command' => 'ps']), |
||
62 | $output |
||
63 | ); |
||
64 | } |
||
65 | } |
||
66 |