Skip to content

Commit

Permalink
#1253 PHP 7 issues with Symfony Console (attempt to fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
j3nsch committed Dec 4, 2024
1 parent 5dee0af commit 648730d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
if (! $input->getOption(self::OPTION_FORCE)) {
$questionText = "<question>Do you want to remove enrichment key \"{$key}\" (Y/n)?</question>";
$confirmation = new ConfirmationQuestion($questionText, true);
$confirmation->setHiddenFallback(true);
$question = $this->getHelper('question');

if (! $question->ask($input, $output, $confirmation)) {
Expand Down

0 comments on commit 648730d

Please sign in to comment.