Skip to content

Commit 8078f06

Browse files
committed
Fix indentation
1 parent d754051 commit 8078f06

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Queue/RabbitMQQueue.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -542,8 +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'))
546-
{
545+
if(property_exists($commandData, 'priority')) {
547546
$properties['priority'] = $commandData->priority;
548547
}
549548
$message = new AMQPMessage($payload, $properties);

0 commit comments

Comments
 (0)