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

Skip to content

Commit 86fe654

Browse files
committed
Fix pushRaw
1 parent 7c893a2 commit 86fe654

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
@@ -62,7 +62,7 @@ public function push($job, $data = '', $queue = null)
6262
*/
6363
public function pushRaw($payload, $queue = null, array $options = array())
6464
{
65-
$id = parent::push($job, $data, $queue);
65+
$id = parent::pushRaw($payload, $queue, $options);
6666
$this->startProcess($id);
6767

6868
return $id;

0 commit comments

Comments
 (0)