We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ed897b commit f4c6586Copy full SHA for f4c6586
.php-cs-fixer.php
@@ -39,5 +39,6 @@
39
'single_trait_insert_per_statement' => true,
40
'no_whitespace_in_blank_line' => true,
41
'method_chaining_indentation' => true,
42
+ 'single_space_around_construct' => true,
43
])
44
->setFinder($finder);
src/Commands/KafkaSetOffset.php
@@ -45,7 +45,7 @@ public function handle()
45
46
try {
47
$bounds = $consumer->getPartitionBounds($topicName, $partitionId);
48
- $realOffset = match($offset) {
+ $realOffset = match ($offset) {
49
'earliest' => $bounds[0] ?? 0,
50
'latest' => $bounds[1] ?? 0,
51
default => $offset,
0 commit comments