From a8315038b90aa746a5ffd5c6214c8bd48f6a23ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Thu, 2 Sep 2021 14:11:05 +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 edb0a2da..52c55b17 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 = 'help'; + $command = 'list'; } $command = $console->find($command); if ($command instanceof Command) {