* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace RectorPrefix20210802\Symfony\Component\Console\Helper; use RectorPrefix20210802\Symfony\Component\Console\Formatter\OutputFormatter; use RectorPrefix20210802\Symfony\Component\Console\Output\OutputInterface; use RectorPrefix20210802\Symfony\Component\Console\Question\ChoiceQuestion; use RectorPrefix20210802\Symfony\Component\Console\Question\ConfirmationQuestion; use RectorPrefix20210802\Symfony\Component\Console\Question\Question; use RectorPrefix20210802\Symfony\Component\Console\Style\SymfonyStyle; /** * Symfony Style Guide compliant question helper. * * @author Kevin Bond */ class SymfonyQuestionHelper extends \RectorPrefix20210802\Symfony\Component\Console\Helper\QuestionHelper { /** * {@inheritdoc} * @param \Symfony\Component\Console\Output\OutputInterface $output * @param \Symfony\Component\Console\Question\Question $question */ protected function writePrompt($output, $question) { $text = \RectorPrefix20210802\Symfony\Component\Console\Formatter\OutputFormatter::escapeTrailingBackslash($question->getQuestion()); $default = $question->getDefault(); if ($question->isMultiline()) { $text .= \sprintf(' (press %s to continue)', $this->getEofShortcut()); } switch (\true) { case null === $default: $text = \sprintf(' %s:', $text); break; case $question instanceof \RectorPrefix20210802\Symfony\Component\Console\Question\ConfirmationQuestion: $text = \sprintf(' %s (yes/no) [%s]:', $text, $default ? 'yes' : 'no'); break; case $question instanceof \RectorPrefix20210802\Symfony\Component\Console\Question\ChoiceQuestion && $question->isMultiselect(): $choices = $question->getChoices(); $default = \explode(',', $default); foreach ($default as $key => $value) { $default[$key] = $choices[\trim($value)]; } $text = \sprintf(' %s [%s]:', $text, \RectorPrefix20210802\Symfony\Component\Console\Formatter\OutputFormatter::escape(\implode(', ', $default))); break; case $question instanceof \RectorPrefix20210802\Symfony\Component\Console\Question\ChoiceQuestion: $choices = $question->getChoices(); $text = \sprintf(' %s [%s]:', $text, \RectorPrefix20210802\Symfony\Component\Console\Formatter\OutputFormatter::escape($choices[$default] ?? $default)); break; default: $text = \sprintf(' %s [%s]:', $text, \RectorPrefix20210802\Symfony\Component\Console\Formatter\OutputFormatter::escape($default)); } $output->writeln($text); $prompt = ' > '; if ($question instanceof \RectorPrefix20210802\Symfony\Component\Console\Question\ChoiceQuestion) { $output->writeln($this->formatChoiceQuestionChoices($question, 'comment')); $prompt = $question->getPrompt(); } $output->write($prompt); } /** * {@inheritdoc} * @param \Symfony\Component\Console\Output\OutputInterface $output * @param \Exception $error */ protected function writeError($output, $error) { if ($output instanceof \RectorPrefix20210802\Symfony\Component\Console\Style\SymfonyStyle) { $output->newLine(); $output->error($error->getMessage()); return; } parent::writeError($output, $error); } private function getEofShortcut() : string { if ('Windows' === \PHP_OS_FAMILY) { return 'Ctrl+Z then Enter'; } return 'Ctrl+D'; } }