From 648730db66b75470e008cf3bef23a3bbeb8b87ff Mon Sep 17 00:00:00 2001 From: j3nsch Date: Wed, 4 Dec 2024 10:41:04 +0100 Subject: [PATCH] #1253 PHP 7 issues with Symfony Console (attempt to fix) --- library/Application/Console/Model/EnrichmentDeleteCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/library/Application/Console/Model/EnrichmentDeleteCommand.php b/library/Application/Console/Model/EnrichmentDeleteCommand.php index ecf1f62ab..651109c6d 100644 --- a/library/Application/Console/Model/EnrichmentDeleteCommand.php +++ b/library/Application/Console/Model/EnrichmentDeleteCommand.php @@ -92,6 +92,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int if (! $input->getOption(self::OPTION_FORCE)) { $questionText = "Do you want to remove enrichment key \"{$key}\" (Y/n)?"; $confirmation = new ConfirmationQuestion($questionText, true); + $confirmation->setHiddenFallback(true); $question = $this->getHelper('question'); if (! $question->ask($input, $output, $confirmation)) {