Skip to content

Commit f4c6586

Browse files
committed
ENSITECH-74
1 parent 9ed897b commit f4c6586

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.php-cs-fixer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,6 @@
3939
'single_trait_insert_per_statement' => true,
4040
'no_whitespace_in_blank_line' => true,
4141
'method_chaining_indentation' => true,
42+
'single_space_around_construct' => true,
4243
])
4344
->setFinder($finder);

src/Commands/KafkaSetOffset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function handle()
4545

4646
try {
4747
$bounds = $consumer->getPartitionBounds($topicName, $partitionId);
48-
$realOffset = match($offset) {
48+
$realOffset = match ($offset) {
4949
'earliest' => $bounds[0] ?? 0,
5050
'latest' => $bounds[1] ?? 0,
5151
default => $offset,

0 commit comments

Comments
 (0)