From 71575a0ccff20e9a4306f8d0d58029aba83288f9 Mon Sep 17 00:00:00 2001 From: Rizqy H Date: Sat, 4 Nov 2023 12:08:02 +0700 Subject: [PATCH] set default description as empty string --- src/Illuminate/Console/Command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Console/Command.php b/src/Illuminate/Console/Command.php index 4213be3d..edf97b1d 100755 --- a/src/Illuminate/Console/Command.php +++ b/src/Illuminate/Console/Command.php @@ -44,7 +44,7 @@ class Command extends \Symfony\Component\Console\Command\Command { * * @var string */ - protected $description; + protected $description = ''; /** * Create a new console command instance.