From d5103035e2dd589bd93f1aaaa28dc33fbce29826 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Mon, 22 Feb 2021 12:03:52 +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 --- Console/AbstractConsole.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Console/AbstractConsole.php b/Console/AbstractConsole.php index 22a53d10..c6b4f1f6 100644 --- a/Console/AbstractConsole.php +++ b/Console/AbstractConsole.php @@ -134,6 +134,9 @@ abstract class AbstractConsole extends Component { $_tmp = []; foreach ($this->commands as $command) { + if ($command->command === 'system:help') { + continue; + } $_tmp[$command->command] = [$command->description, $command]; } ksort($_tmp, SORT_ASC);