Skip to content

Commit dd66d82

Browse files
committed
fix style
1 parent b17f174 commit dd66d82

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Queue/RabbitMQQueue.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -694,8 +694,10 @@ protected function getRoutingKey(string $destination): string
694694
*/
695695
protected function getExchangeType(?string $type = null): string
696696
{
697-
return @constant(AMQPExchangeType::class.'::'.Str::upper($type ?: Arr::get($this->options,
698-
'exchange_type') ?: 'direct')) ?: AMQPExchangeType::DIRECT;
697+
return @constant(AMQPExchangeType::class.'::'.Str::upper($type ?: Arr::get(
698+
$this->options,
699+
'exchange_type'
700+
) ?: 'direct')) ?: AMQPExchangeType::DIRECT;
699701
}
700702

701703
/**

0 commit comments

Comments
 (0)