Skip to content

Commit c50775b

Browse files
author
pufik
committed
StyleCI fix
1 parent 3030a87 commit c50775b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/VladimirYuldashev/LaravelQueueRabbitMQ/Queue/RabbitMQQueue.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ private function declareQueue($name)
175175
$name = $this->getQueueName($name);
176176
$exchange = $this->configExchange['name'] ?: $name;
177177

178-
if ($this->declareExchange && !in_array($exchange, $this->declaredExchanges)) {
178+
if ($this->declareExchange && ! in_array($exchange, $this->declaredExchanges)) {
179179
$this->declaredExchanges[] = $exchange;
180180
// declare exchange
181181
$this->channel->exchange_declare(
@@ -187,7 +187,7 @@ private function declareQueue($name)
187187
);
188188
}
189189

190-
if ($this->declareBindQueue && !in_array($name, $this->declaredBindQueue)) {
190+
if ($this->declareBindQueue && ! in_array($name, $this->declaredBindQueue)) {
191191
$this->declaredBindQueue[] = $name;
192192
// declare queue
193193
$this->channel->queue_declare(

0 commit comments

Comments
 (0)