We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b17f174 commit dd66d82Copy full SHA for dd66d82
src/Queue/RabbitMQQueue.php
@@ -694,8 +694,10 @@ protected function getRoutingKey(string $destination): string
694
*/
695
protected function getExchangeType(?string $type = null): string
696
{
697
- return @constant(AMQPExchangeType::class.'::'.Str::upper($type ?: Arr::get($this->options,
698
- 'exchange_type') ?: 'direct')) ?: AMQPExchangeType::DIRECT;
+ return @constant(AMQPExchangeType::class.'::'.Str::upper($type ?: Arr::get(
+ $this->options,
699
+ 'exchange_type'
700
+ ) ?: 'direct')) ?: AMQPExchangeType::DIRECT;
701
}
702
703
/**
0 commit comments