From 0c0ceeebfdd5f56f67dc386b701042d546ff89a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Mon, 7 Sep 2020 18:58:51 +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 --- System/Application.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/System/Application.php b/System/Application.php index e8066b8c..51f9eae2 100644 --- a/System/Application.php +++ b/System/Application.php @@ -77,7 +77,6 @@ class Application extends BaseApplication } - /** * @param $argv * @throws @@ -95,8 +94,11 @@ class Application extends BaseApplication $manager->shutdown(); $manager->start(); break; - default: + case 'start': $manager->start(); + break; + default: + $this->error('I don\'t know what I want to do.'); } }