From 09596e145108eb47e794f4ab44ed2b37c29a61bb Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Mon, 6 Jan 2014 14:55:29 +0100 Subject: [PATCH] Boot CLI application before run --- lib/Alchemy/Phrasea/CLI.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Alchemy/Phrasea/CLI.php b/lib/Alchemy/Phrasea/CLI.php index f832751e73..cf887d9e38 100644 --- a/lib/Alchemy/Phrasea/CLI.php +++ b/lib/Alchemy/Phrasea/CLI.php @@ -65,6 +65,8 @@ class CLI extends Application */ public function runCLI($interactive = false) { + $this->boot(); + $app = $this['console']; if ($interactive) { $app = new Console\Shell($app);