Skip to content
This repository was archived by the owner on Nov 5, 2025. It is now read-only.

Commit ca07ab2

Browse files
committed
Fix double escape
2 parents 73e6679 + 1f2893b commit ca07ab2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AsyncQueue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ protected function getCommand($queue, $id)
161161
*/
162162
protected function getPhpBinary()
163163
{
164-
$path = escapeshellarg($this->binary);
164+
$path = $this->binary;
165165
if (!defined('PHP_WINDOWS_VERSION_BUILD')) {
166166
$path = escapeshellarg($path);
167167
}

0 commit comments

Comments
 (0)