| 1 | <?php |
||
| 9 | class LanguageConfigCustomizer implements ConfigCustomizerInterface |
||
| 10 | { |
||
| 11 | private const SUPPORTED_LANGUAGES = ['en', 'es']; |
||
| 12 | |||
| 13 | public function process(SymfonyStyle $io, CustomizableAppConfig $appConfig): void |
||
| 26 | |||
| 27 | private function chooseLanguage(string $message, SymfonyStyle $io): string |
||
| 31 | } |
||
| 32 |