SatisAdmin\Console\Application::doRun PHP Method

doRun() public method

{@inheritDoc}
public doRun ( Symfony\Component\Console\Input\InputInterface $input = null, Symfony\Component\Console\Output\OutputInterface $output = null )
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    public function doRun(InputInterface $input = null, OutputInterface $output = null)
    {
        $env = $input->getParameterOption('--env', null);
        if (null === $env) {
            $env = $input->getParameterOption('-e', 'dev');
        }
        $this->app = new SilexApplication($env);
        $this->app->boot();
        return parent::doRun($input, $output);
    }