diff --git a/src/Mage/MageApplication.php b/src/Mage/MageApplication.php index 064019c..aeddacc 100644 --- a/src/Mage/MageApplication.php +++ b/src/Mage/MageApplication.php @@ -79,25 +79,14 @@ class MageApplication extends Application $this->runtime = new Runtime(); $this->runtime->setConfiguration($config); $this->runtime->setLogger($logger); + + $this->loadBuiltInCommands(); + } else { throw new RuntimeException(sprintf('The file "%s" does not have a valid Magallanes configuration.', $file)); } } - /** - * Run the Application - * - * @param InputInterface $input - * @param OutputInterface $output - * @throws RuntimeException - */ - public function run(InputInterface $input = null, OutputInterface $output = null) - { - $this->loadBuiltInCommands(); - - parent::run(); - } - /** * Loads the BuiltIn Commands */