| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3.0416 |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | 2 | private function ask(SymfonyStyle $io, string $key) |
|
| 41 | { |
||
| 42 | switch ($key) { |
||
| 43 | 2 | case self::DEFAULT_LANG: |
|
| 44 | 1 | return $this->chooseLanguage($io, 'Select default language for the application in general'); |
|
| 45 | 2 | case self::CLI_LANG: |
|
| 46 | 2 | return $this->chooseLanguage($io, 'Select default language for CLI executions'); |
|
| 47 | } |
||
| 48 | |||
| 49 | return ''; |
||
| 50 | } |
||
| 51 | |||
| 57 |