Altax\Console\Application::doRun PHP Method

doRun() public method

This cli application main process.
public doRun ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output )
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    public function doRun(InputInterface $input, OutputInterface $output)
    {
        $this->configureContainer($input, $output);
        $this->registerBuiltinCommands();
        $this->registerBaseModules();
        $this->loadConfiguration($input, $output);
        $this->registerTasksAsConsoleCommands();
        // Runs specified command under the symfony console.
        return parent::doRun($input, $output);
    }