Magestead\Command\ProcessCommand::run PHP Метод

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

protected run ( $command, $projectPath, Symfony\Component\Console\Output\OutputInterface $output )
$command
$projectPath
$output Symfony\Component\Console\Output\OutputInterface
    protected function run($command, $projectPath, OutputInterface $output)
    {
        $process = new Process($command, $projectPath, array_merge($_SERVER, $_ENV), null, null);
        $process->run(function ($type, $line) use($output) {
            $output->write($line);
        });
    }
ProcessCommand