Skip to content

Commit

Permalink
Rolled back change
Browse files Browse the repository at this point in the history
  • Loading branch information
mcustiel committed Aug 29, 2020
1 parent f683dae commit 532e40a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Extension/PhiremockProcess.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private function initProcess(string $ip, int $port, bool $debug, ?string $expect
if (method_exists(Process::class, 'fromShellCommandline')) {
$this->process = Process::fromShellCommandline(implode(' ', $commandline));
} else {
$this->process = new Process($commandline);
$this->process = new Process(implode(' ', $commandline));
}
}

Expand Down

0 comments on commit 532e40a

Please sign in to comment.