Skip to content

Commit 9236342

Browse files
committed
More CS Fixes
1 parent 4164e1e commit 9236342

5 files changed

+18
-18
lines changed

RdKafkaConsumer.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,11 @@ private function doReceive(int $timeout): ?RdKafkaMessage
167167
}
168168

169169
switch ($kafkaMessage->err) {
170-
case RD_KAFKA_RESP_ERR__PARTITION_EOF:
171-
case RD_KAFKA_RESP_ERR__TIMED_OUT:
172-
case RD_KAFKA_RESP_ERR__TRANSPORT:
170+
case \RD_KAFKA_RESP_ERR__PARTITION_EOF:
171+
case \RD_KAFKA_RESP_ERR__TIMED_OUT:
172+
case \RD_KAFKA_RESP_ERR__TRANSPORT:
173173
return null;
174-
case RD_KAFKA_RESP_ERR_NO_ERROR:
174+
case \RD_KAFKA_RESP_ERR_NO_ERROR:
175175
$message = $this->serializer->toMessage($kafkaMessage->payload);
176176
$message->setKey($kafkaMessage->key);
177177
$message->setPartition($kafkaMessage->partition);

RdKafkaContext.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,9 @@ public static function getLibrdKafkaVersion(): string
173173
if (!defined('RD_KAFKA_VERSION')) {
174174
throw new \RuntimeException('RD_KAFKA_VERSION constant is not defined. Phprdkafka is probably not installed');
175175
}
176-
$major = (RD_KAFKA_VERSION & 0xFF000000) >> 24;
177-
$minor = (RD_KAFKA_VERSION & 0x00FF0000) >> 16;
178-
$patch = (RD_KAFKA_VERSION & 0x0000FF00) >> 8;
176+
$major = (\RD_KAFKA_VERSION & 0xFF000000) >> 24;
177+
$minor = (\RD_KAFKA_VERSION & 0x00FF0000) >> 16;
178+
$patch = (\RD_KAFKA_VERSION & 0x0000FF00) >> 8;
179179

180180
return "$major.$minor.$patch";
181181
}

RdKafkaProducer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function send(Destination $destination, Message $message): void
3737
InvalidDestinationException::assertDestinationInstanceOf($destination, RdKafkaTopic::class);
3838
InvalidMessageException::assertMessageInstanceOf($message, RdKafkaMessage::class);
3939

40-
$partition = $message->getPartition() ?? $destination->getPartition() ?? RD_KAFKA_PARTITION_UA;
40+
$partition = $message->getPartition() ?? $destination->getPartition() ?? \RD_KAFKA_PARTITION_UA;
4141
$payload = $this->serializer->toString($message);
4242
$key = $message->getKey() ?? $destination->getKey() ?? null;
4343

Tests/RdKafkaConsumerTest.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function testShouldReceiveFromQueueAndReturnNullIfNoMessageInQueue()
3232
$destination = new RdKafkaTopic('dest');
3333

3434
$kafkaMessage = new Message();
35-
$kafkaMessage->err = RD_KAFKA_RESP_ERR__TIMED_OUT;
35+
$kafkaMessage->err = \RD_KAFKA_RESP_ERR__TIMED_OUT;
3636

3737
$kafkaConsumer = $this->createKafkaConsumerMock();
3838
$kafkaConsumer
@@ -61,7 +61,7 @@ public function testShouldPassProperlyConfiguredTopicPartitionOnAssign()
6161
$destination = new RdKafkaTopic('dest');
6262

6363
$kafkaMessage = new Message();
64-
$kafkaMessage->err = RD_KAFKA_RESP_ERR__TIMED_OUT;
64+
$kafkaMessage->err = \RD_KAFKA_RESP_ERR__TIMED_OUT;
6565

6666
$kafkaConsumer = $this->createKafkaConsumerMock();
6767
$kafkaConsumer
@@ -91,7 +91,7 @@ public function testShouldSubscribeOnFirstReceiveOnly()
9191
$destination = new RdKafkaTopic('dest');
9292

9393
$kafkaMessage = new Message();
94-
$kafkaMessage->err = RD_KAFKA_RESP_ERR__TIMED_OUT;
94+
$kafkaMessage->err = \RD_KAFKA_RESP_ERR__TIMED_OUT;
9595

9696
$kafkaConsumer = $this->createKafkaConsumerMock();
9797
$kafkaConsumer
@@ -122,7 +122,7 @@ public function testShouldAssignWhenOffsetIsSet()
122122
$destination->setPartition(1);
123123

124124
$kafkaMessage = new Message();
125-
$kafkaMessage->err = RD_KAFKA_RESP_ERR__TIMED_OUT;
125+
$kafkaMessage->err = \RD_KAFKA_RESP_ERR__TIMED_OUT;
126126

127127
$kafkaConsumer = $this->createKafkaConsumerMock();
128128
$kafkaConsumer
@@ -154,7 +154,7 @@ public function testThrowOnOffsetChangeAfterSubscribing()
154154
$destination = new RdKafkaTopic('dest');
155155

156156
$kafkaMessage = new Message();
157-
$kafkaMessage->err = RD_KAFKA_RESP_ERR__TIMED_OUT;
157+
$kafkaMessage->err = \RD_KAFKA_RESP_ERR__TIMED_OUT;
158158

159159
$kafkaConsumer = $this->createKafkaConsumerMock();
160160
$kafkaConsumer
@@ -188,7 +188,7 @@ public function testShouldReceiveFromQueueAndReturnMessageIfMessageInQueue()
188188
$expectedMessage = new RdKafkaMessage('theBody', ['foo' => 'fooVal'], ['bar' => 'barVal']);
189189

190190
$kafkaMessage = new Message();
191-
$kafkaMessage->err = RD_KAFKA_RESP_ERR_NO_ERROR;
191+
$kafkaMessage->err = \RD_KAFKA_RESP_ERR_NO_ERROR;
192192
$kafkaMessage->payload = 'theSerializedMessage';
193193

194194
$kafkaConsumer = $this->createKafkaConsumerMock();

Tests/RdKafkaProducerTest.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function testShouldUseSerializerToEncodeMessageAndPutToExpectedTube()
4646
->expects($this->once())
4747
->method('producev')
4848
->with(
49-
RD_KAFKA_PARTITION_UA,
49+
\RD_KAFKA_PARTITION_UA,
5050
0,
5151
'theSerializedMessage',
5252
'key',
@@ -183,7 +183,7 @@ public function testShouldAllowSerializersToSerializeKeys()
183183
->expects($this->once())
184184
->method('producev')
185185
->with(
186-
RD_KAFKA_PARTITION_UA,
186+
\RD_KAFKA_PARTITION_UA,
187187
0,
188188
'theSerializedMessage',
189189
'theSerializedKey'
@@ -324,7 +324,7 @@ public function testShouldAllowFalsyKeyFromMessage(): void
324324
->expects($this->once())
325325
->method('producev')
326326
->with(
327-
RD_KAFKA_PARTITION_UA,
327+
\RD_KAFKA_PARTITION_UA,
328328
0,
329329
'',
330330
$key
@@ -354,7 +354,7 @@ public function testShouldAllowFalsyKeyFromDestination(): void
354354
->expects($this->once())
355355
->method('producev')
356356
->with(
357-
RD_KAFKA_PARTITION_UA,
357+
\RD_KAFKA_PARTITION_UA,
358358
0,
359359
'',
360360
$key

0 commit comments

Comments
 (0)