Altax\Console\Application::run PHP Méthode

run() public méthode

{@inheritDoc}
public run ( 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 run(InputInterface $input = null, OutputInterface $output = null)
    {
        // Add output formatter style used by embedded composer.
        if (null === $output) {
            $styles = \Composer\Factory::createAdditionalStyles();
            $formatter = new OutputFormatter(null, $styles);
            $output = new ConsoleOutput(ConsoleOutput::VERBOSITY_NORMAL, null, $formatter);
        }
        return parent::run($input, $output);
    }