Magestead\Command\Cache\FlushCommand::execute PHP Метод

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

protected execute ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output ) : ProcessCommand
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
Результат Magestead\Command\ProcessCommand
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $output->writeln('<info>Flushing cache storage</info>');
        $cacheType = $input->getArgument('type');
        $command = $this->getCommand(new Config($output), $cacheType);
        $pCommand = "vagrant ssh -c '" . $command . "'";
        return new ProcessCommand($pCommand, $this->_projectPath, $output);
    }