From 2aab6bd2096fc83912182704ad70c25954396457 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Thu, 26 Oct 2023 16:10:49 +0200 Subject: [PATCH] Fix icon for errors to be consistent with the others MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- core/Command/SetupChecks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Command/SetupChecks.php b/core/Command/SetupChecks.php index e64f7a5058ec8..d266b62a0f21c 100644 --- a/core/Command/SetupChecks.php +++ b/core/Command/SetupChecks.php @@ -63,7 +63,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int }; $emoji = match ($check->getSeverity()) { 'success' => '✓', - 'error' => '❌', + 'error' => '✗', 'warning' => '⚠', default => 'ℹ', };