Skip to content

Commit

Permalink
Merge pull request #550 from vyuldashev/fix/batch-publish-parameters
Browse files Browse the repository at this point in the history
Switched the order of the parameters
  • Loading branch information
adm-bome authored Jun 15, 2023
2 parents becdfdd + 9051e47 commit 9f6b340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Queue/RabbitMQQueue.php
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public function laterRaw($delay, string $payload, $queue = null, int $attempts =
*/
public function bulk($jobs, $data = '', $queue = null): void
{
$this->publishBatch($jobs, $queue, $data);
$this->publishBatch($jobs, $data, $queue);
}

/**
Expand Down

0 comments on commit 9f6b340

Please sign in to comment.