Kraken\Console\Client\Command\CommandManager::run PHP Method

run() public method

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)
    {
        printf("Kraken %s by Kamil Jamroz and contributors.\n\n", $this->version);
        $this->async = false;
        $code = parent::run($input, $output);
        if ($this->async !== true) {
            exit($code);
        }
        return $code;
    }