Skip to content

Commit

Permalink
Fix phpcs issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dingo-d committed Apr 12, 2024
1 parent bd2b7fa commit 5003653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Process/Process.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct($executable, array $arguments = array(), $stdInInput
self::STDERR => array('pipe', self::WRITE),
);

$cmdLine = '"'.$executable . '" ' . implode(' ', array_map('escapeshellarg', $arguments));
$cmdLine = '"' . $executable . '" ' . implode(' ', array_map('escapeshellarg', $arguments));
$this->process = proc_open($cmdLine, $descriptors, $pipes, null, null, array('bypass_shell' => true));

if ($this->process === false || $this->process === null) {
Expand Down

0 comments on commit 5003653

Please sign in to comment.