Skip to content

Commit 115040a

Browse files
committed
fix test
1 parent 0b090c5 commit 115040a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Queue/RabbitMQQueue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ protected function createMessage($payload, int $attempts = 0): array
541541
$properties['priority'] = $attempts;
542542
}
543543

544-
if(isset($currentPayload['data']['command'])) {
544+
if (isset($currentPayload['data']['command'])) {
545545
$commandData = unserialize($currentPayload['data']['command']);
546546
if (property_exists($commandData, 'priority')) {
547547
$properties['priority'] = $commandData->priority;

0 commit comments

Comments
 (0)