Kraken\Console\Client\Command\CommandManager::doRunCommand PHP Метод

doRunCommand() защищенный Метод

protected doRunCommand ( Command $command, Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output )
$command Symfony\Component\Console\Command\Command
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    protected function doRunCommand(SymfonyCommand $command, InputInterface $input, OutputInterface $output)
    {
        if ($command instanceof CommandInterface && $command->isAsync() === true) {
            $this->async = true;
        }
        return parent::doRunCommand($command, $input, $output);
    }