[Nostromo] Refactor MageApplication

This commit is contained in:
Andrés Montañez 2017-01-04 01:14:12 -03:00
parent bf458cc35c
commit 8090ebf65b

View file

@ -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
*/