Skip to content

Commit 95171da

Browse files
committed
fix codestyle
1 parent 85cbf32 commit 95171da

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pkg/amqp-lib/AmqpContext.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public function bind(PsrDestination $source, PsrDestination $target)
177177
$source->getArguments(),
178178
$source->getTicket()
179179
);
180-
// bind queue to exchange
180+
// bind queue to exchange
181181
} elseif ($source instanceof AmqpQueue) {
182182
$this->getChannel()->queue_bind(
183183
$source->getQueueName(),
@@ -187,7 +187,7 @@ public function bind(PsrDestination $source, PsrDestination $target)
187187
$target->getArguments(),
188188
$target->getTicket()
189189
);
190-
// bind exchange to queue
190+
// bind exchange to queue
191191
} else {
192192
$this->getChannel()->queue_bind(
193193
$target->getQueueName(),

pkg/amqp-lib/Tests/Spec/AmqpContextTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
namespace Enqueue\AmqpLib\Tests\Spec;
34

45
use Enqueue\AmqpLib\AmqpContext;

0 commit comments

Comments
 (0)