| Conditions | 3 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 9 | private function getNameOfProject($input, $output, $helper, $nameOfProject) |
||
| 10 | { |
||
| 11 | if (!$nameOfProject) { |
||
| 12 | $question = new Question('<question>What is the project key?</question>: '); |
||
| 13 | do { |
||
| 14 | $nameOfProject = trim($helper->ask($input, $output, $question)); |
||
| 15 | } while (empty($nameOfProject)); |
||
| 16 | } |
||
| 17 | |||
| 18 | return $nameOfProject; |
||
| 19 | } |
||
| 20 | |||
| 21 | } |