From 059898848a1a80511e9652b4f37b1be1f2cae869 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Thu, 2 Sep 2021 14:10:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Application.php b/core/Application.php index 333db9d2..edb0a2da 100644 --- a/core/Application.php +++ b/core/Application.php @@ -213,7 +213,7 @@ class Application extends BaseApplication try { $console = di(\Symfony\Component\Console\Application::class); $command = $input->getFirstArgument(); - if (!empty($command)) { + if (empty($command)) { $command = 'help'; } $command = $console->find($command);