Skip to content

Commit 1cad99f

Browse files
committed
Fix CS
1 parent 9e6a755 commit 1cad99f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/amqp-ext/Tests/Functional/AmqpCommonUseCasesTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public function testProduceAndReceiveOneMessageSentDirectlyToTemporaryQueue()
128128
public function testProduceAndReceiveOneMessageSentDirectlyToTopic()
129129
{
130130
$topic = $this->amqpContext->createTopic('amqp_ext.test_exchange');
131-
$topic->setType(AMQP_EX_TYPE_FANOUT);
131+
$topic->setType(\AMQP_EX_TYPE_FANOUT);
132132
$this->amqpContext->declareTopic($topic);
133133

134134
$queue = $this->amqpContext->createQueue('amqp_ext.test');
@@ -153,7 +153,7 @@ public function testProduceAndReceiveOneMessageSentDirectlyToTopic()
153153
public function testConsumerReceiveMessageFromTopicDirectly()
154154
{
155155
$topic = $this->amqpContext->createTopic('amqp_ext.test_exchange');
156-
$topic->setType(AMQP_EX_TYPE_FANOUT);
156+
$topic->setType(\AMQP_EX_TYPE_FANOUT);
157157

158158
$this->amqpContext->declareTopic($topic);
159159

@@ -176,7 +176,7 @@ public function testConsumerReceiveMessageFromTopicDirectly()
176176
public function testConsumerReceiveMessageWithZeroTimeout()
177177
{
178178
$topic = $this->amqpContext->createTopic('amqp_ext.test_exchange');
179-
$topic->setType(AMQP_EX_TYPE_FANOUT);
179+
$topic->setType(\AMQP_EX_TYPE_FANOUT);
180180

181181
$this->amqpContext->declareTopic($topic);
182182

0 commit comments

Comments
 (0)