Skip to content

Commit 23f7f3b

Browse files
committed
Merge remote-tracking branch 'origin' into horizon
2 parents a5f3f1e + 480ae6f commit 23f7f3b

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

tests/Mock/AmqpContextMock.php

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
namespace VladimirYuldashev\LaravelQueueRabbitMQ\Tests\Mock;
44

5+
use Interop\Queue\Queue;
6+
use Interop\Queue\Topic;
57
use Interop\Amqp\AmqpBind;
8+
use Interop\Queue\Message;
69
use Interop\Amqp\AmqpQueue;
710
use Interop\Amqp\AmqpTopic;
8-
use Interop\Amqp\AmqpContext;
911
use Interop\Queue\Consumer;
10-
use Interop\Queue\Destination;
11-
use Interop\Queue\Message;
1212
use Interop\Queue\Producer;
13-
use Interop\Queue\Queue;
13+
use Interop\Amqp\AmqpContext;
14+
use Interop\Queue\Destination;
1415
use Interop\Queue\SubscriptionConsumer;
15-
use Interop\Queue\Topic;
1616

1717
class AmqpContextMock implements AmqpContext
1818
{
@@ -61,7 +61,6 @@ public function setQos(int $prefetchSize, int $prefetchCount, bool $global): voi
6161
throw new \LogicException('It is not expected to be called');
6262
}
6363

64-
6564
public function close(): void
6665
{
6766
throw new \LogicException('It is not expected to be called');

tests/Mock/DelayStrategyAwareAmqpConnectionFactorySpy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace VladimirYuldashev\LaravelQueueRabbitMQ\Tests\Mock;
44

5+
use Interop\Queue\Context;
56
use Enqueue\AmqpTools\DelayStrategy;
67
use Enqueue\AmqpTools\DelayStrategyAware;
7-
use Interop\Queue\Context;
88

99
class DelayStrategyAwareAmqpConnectionFactorySpy implements \Interop\Amqp\AmqpConnectionFactory, DelayStrategyAware
1010
{

0 commit comments

Comments
 (0)