From 260cf024575efb0cc9977966511f75710f9e63c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Thu, 2 Sep 2021 14:09:19 +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 f24712bd..333db9d2 100644 --- a/core/Application.php +++ b/core/Application.php @@ -214,7 +214,7 @@ class Application extends BaseApplication $console = di(\Symfony\Component\Console\Application::class); $command = $input->getFirstArgument(); if (!empty($command)) { - $command = 'list'; + $command = 'help'; } $command = $console->find($command); if ($command instanceof Command) {