Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 9 |
Ratio | 100 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
21 | 5 | public function execute(InputInterface $input, OutputInterface $output) |
|
22 | { |
||
23 | try { |
||
24 | 5 | $this->getProject()->setHomepage($this->ask($input, $output, $this->buildQuestion())); |
|
25 | 5 | }catch(\Exception $e){ |
|
26 | 1 | $this->getProject()->setHomepage(''); |
|
27 | } |
||
28 | 5 | return ITask::NO_ERROR_CODE; |
|
29 | } |
||
30 | |||
56 |