| 1 | <?php |
||
| 9 | class LanguageConfigCustomizer implements ConfigCustomizerInterface |
||
| 10 | { |
||
| 11 | const SUPPORTED_LANGUAGES = ['en', 'es']; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @param SymfonyStyle $io |
||
| 15 | * @param CustomizableAppConfig $appConfig |
||
| 16 | * @return void |
||
| 17 | */ |
||
| 18 | 3 | public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig) |
|
| 31 | |||
| 32 | 2 | private function chooseLanguage(string $message, SymfonyStyle $io): string |
|
| 36 | } |
||
| 37 |