rector/vendor/symfony/console/Helper/SymfonyQuestionHelper.php
Tomas Votruba 3547d90d45 Updated Rector to commit 1913747f014f5b4663dec6b32148a8d5046a74a5
1913747f01 [CodingStyle] Handle NotIdentical on CountArrayToEmptyArrayComparisonRector (#144)
2021-06-03 08:30:49 +00:00

86 lines
4.1 KiB
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace RectorPrefix20210603\Symfony\Component\Console\Helper;
use RectorPrefix20210603\Symfony\Component\Console\Formatter\OutputFormatter;
use RectorPrefix20210603\Symfony\Component\Console\Output\OutputInterface;
use RectorPrefix20210603\Symfony\Component\Console\Question\ChoiceQuestion;
use RectorPrefix20210603\Symfony\Component\Console\Question\ConfirmationQuestion;
use RectorPrefix20210603\Symfony\Component\Console\Question\Question;
use RectorPrefix20210603\Symfony\Component\Console\Style\SymfonyStyle;
/**
* Symfony Style Guide compliant question helper.
*
* @author Kevin Bond <kevinbond@gmail.com>
*/
class SymfonyQuestionHelper extends \RectorPrefix20210603\Symfony\Component\Console\Helper\QuestionHelper
{
/**
* {@inheritdoc}
*/
protected function writePrompt(\RectorPrefix20210603\Symfony\Component\Console\Output\OutputInterface $output, \RectorPrefix20210603\Symfony\Component\Console\Question\Question $question)
{
$text = \RectorPrefix20210603\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(' <info>%s</info>:', $text);
break;
case $question instanceof \RectorPrefix20210603\Symfony\Component\Console\Question\ConfirmationQuestion:
$text = \sprintf(' <info>%s (yes/no)</info> [<comment>%s</comment>]:', $text, $default ? 'yes' : 'no');
break;
case $question instanceof \RectorPrefix20210603\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(' <info>%s</info> [<comment>%s</comment>]:', $text, \RectorPrefix20210603\Symfony\Component\Console\Formatter\OutputFormatter::escape(\implode(', ', $default)));
break;
case $question instanceof \RectorPrefix20210603\Symfony\Component\Console\Question\ChoiceQuestion:
$choices = $question->getChoices();
$text = \sprintf(' <info>%s</info> [<comment>%s</comment>]:', $text, \RectorPrefix20210603\Symfony\Component\Console\Formatter\OutputFormatter::escape($choices[$default] ?? $default));
break;
default:
$text = \sprintf(' <info>%s</info> [<comment>%s</comment>]:', $text, \RectorPrefix20210603\Symfony\Component\Console\Formatter\OutputFormatter::escape($default));
}
$output->writeln($text);
$prompt = ' > ';
if ($question instanceof \RectorPrefix20210603\Symfony\Component\Console\Question\ChoiceQuestion) {
$output->writeln($this->formatChoiceQuestionChoices($question, 'comment'));
$prompt = $question->getPrompt();
}
$output->write($prompt);
}
/**
* {@inheritdoc}
*/
protected function writeError(\RectorPrefix20210603\Symfony\Component\Console\Output\OutputInterface $output, \Exception $error)
{
if ($output instanceof \RectorPrefix20210603\Symfony\Component\Console\Style\SymfonyStyle) {
$output->newLine();
$output->error($error->getMessage());
return;
}
parent::writeError($output, $error);
}
private function getEofShortcut() : string
{
if (\false !== \strpos(\PHP_OS, 'WIN')) {
return '<comment>Ctrl+Z</comment> then <comment>Enter</comment>';
}
return '<comment>Ctrl+D</comment>';
}
}