Skip to content

Commit 91e01b8

Browse files
committed
Fix indentation
1 parent 8078f06 commit 91e01b8

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
@@ -542,7 +542,7 @@ protected function createMessage($payload, int $attempts = 0): array
542542
$properties['priority'] = $attempts;
543543
}
544544
$commandData = unserialize($currentPayload['data']['command']);
545-
if(property_exists($commandData, 'priority')) {
545+
if (property_exists($commandData, 'priority')) {
546546
$properties['priority'] = $commandData->priority;
547547
}
548548
$message = new AMQPMessage($payload, $properties);

0 commit comments

Comments
 (0)