Skip to content

Commit 0c149fd

Browse files
author
Daniel Fly
committed
Fixed lint
1 parent 3083b04 commit 0c149fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/VladimirYuldashev/LaravelQueueRabbitMQ/Queue/RabbitMQQueue.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@ public function pop($queue = null)
165165
$message = $this->channel->basic_get($queue);
166166

167167
if ($message instanceof AMQPMessage) {
168-
return new RabbitMQJob($this->container, $this, $this->channel, $queue, $message, $this->connectionName);
168+
return new RabbitMQJob($this->container, $this, $this->channel,
169+
$queue, $message, $this->connectionName);
169170
}
170171
} catch (ErrorException $exception) {
171172
$this->reportConnectionError('pop', $exception);

0 commit comments

Comments
 (0)