MyBuilder\Cronos\Updater\SymfonyProcessRunner::run PHP Method

run() public method

public run ( $command )
    public function run($command)
    {
        $process = new Process($command);
        $process->run();
        if (!$process->isSuccessful()) {
            throw new \RuntimeException($process->getErrorOutput());
        }
        return $process->getOutput();
    }
SymfonyProcessRunner