From 942d90033a48d4aa1e0dce34d365f631317eba12 Mon Sep 17 00:00:00 2001 From: Matthieu Napoli Date: Wed, 13 Nov 2024 17:12:22 +0100 Subject: [PATCH] Bold --- src/Cli/IO.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cli/IO.php b/src/Cli/IO.php index ba75e0e..7281b22 100644 --- a/src/Cli/IO.php +++ b/src/Cli/IO.php @@ -94,7 +94,7 @@ public static function error(Throwable $e, bool $logStackTrace = true): void self::writeln([ '', - Styles::red('× ' . $e->getMessage()) . Styles::gray(' ' . $shortClassName), + Styles::bold(Styles::red('× ' . $e->getMessage())) . Styles::gray(' ' . $shortClassName), ]); }