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.'); } }