N98\Magento\Command\ScriptCommand::runShellCommand PHP Метод

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

protected runShellCommand ( Symfony\Component\Console\Output\OutputInterface $output, string $commandString )
$output Symfony\Component\Console\Output\OutputInterface
$commandString string
    protected function runShellCommand(OutputInterface $output, $commandString)
    {
        $commandString = $this->_prepareShellCommand($commandString);
        $returnValue = shell_exec($commandString);
        if (!empty($returnValue)) {
            $output->writeln($returnValue);
        }
    }