We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd2b7fa commit 5003653Copy full SHA for 5003653
src/Process/Process.php
@@ -45,7 +45,7 @@ public function __construct($executable, array $arguments = array(), $stdInInput
45
self::STDERR => array('pipe', self::WRITE),
46
);
47
48
- $cmdLine = '"'.$executable . '" ' . implode(' ', array_map('escapeshellarg', $arguments));
+ $cmdLine = '"' . $executable . '" ' . implode(' ', array_map('escapeshellarg', $arguments));
49
$this->process = proc_open($cmdLine, $descriptors, $pipes, null, null, array('bypass_shell' => true));
50
51
if ($this->process === false || $this->process === null) {
0 commit comments