Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
21 | 4 | public function execute(InputInterface $input, OutputInterface $output) |
|
22 | { |
||
23 | 4 | $answer = $this->ask( |
|
24 | 4 | $input, |
|
25 | 4 | $output, |
|
26 | 4 | new SimpleQuestion('<question>Enter your project keywords (comma separated):</question>') |
|
27 | 4 | ); |
|
28 | |||
29 | 4 | $this->setAnswer($answer); |
|
30 | |||
31 | 4 | return ITask::NO_ERROR_CODE; |
|
32 | } |
||
33 | |||
46 |