Skip to content
This repository was archived by the owner on Mar 9, 2024. It is now read-only.

Commit 1f2893b

Browse files
committed
Fix double escape
1 parent 59ee17e commit 1f2893b

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
@@ -98,7 +98,7 @@ protected function getCommand($jobId, $delay = 0)
9898
*/
9999
protected function getPhpBinary()
100100
{
101-
$path = escapeshellarg($this->config['binary']);
101+
$path = $this->config['binary'];
102102
if (!defined('PHP_WINDOWS_VERSION_BUILD')) {
103103
$path = escapeshellarg($path);
104104
}

0 commit comments

Comments
 (0)