diff --git a/core/Command/SetupChecks.php b/core/Command/SetupChecks.php index f31acba63e3f1..e64f7a5058ec8 100644 --- a/core/Command/SetupChecks.php +++ b/core/Command/SetupChecks.php @@ -64,6 +64,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $emoji = match ($check->getSeverity()) { 'success' => '✓', 'error' => '❌', + 'warning' => '⚠', default => 'ℹ', }; $verbosity = ($check->getSeverity() === 'error' ? OutputInterface::VERBOSITY_QUIET : OutputInterface::VERBOSITY_NORMAL);