Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 39f044e

Browse files
authored
Process needs command to be array (barryvdh#95)
1 parent 2ec0697 commit 39f044e

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
@@ -134,7 +134,7 @@ public function startProcess($id)
134134
$command = $this->getCommand($id);
135135
$cwd = base_path();
136136

137-
$process = new Process($command, $cwd);
137+
$process = new Process([$command], $cwd);
138138
$process->run();
139139
}
140140

0 commit comments

Comments
 (0)