/**
 * Configures the IO
 *
 * @param   InputInterface   $input   Console Input
 * @param   OutputInterface  $output  Console Output
 *
 * @return void
 *
 * @since 4.0.0
 *
 */
private function configureIO(InputInterface $input, OutputInterface $output) : void
{
    $this->cliInput = $input;
    $this->ioStyle = new SymfonyStyle($input, $output);
    $language = Factory::getLanguage();
    $language->load('', JPATH_ADMINISTRATOR, null, false, false) || $language->load('', JPATH_ADMINISTRATOR, null, true);
    $language->load('com_installer', JPATH_ADMINISTRATOR, null, false, false) || $language->load('com_installer', JPATH_ADMINISTRATOR, null, true);
}