Skip to content

Commit 0bc448e

Browse files
committed
Multi-line function call not indented correctly
1 parent ddb671b commit 0bc448e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Diff for: lib/Phpfastcache/Drivers/Rediscluster/Driver.php

+1-5
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,7 @@ protected function driverReadAllKeys(string $pattern = '*'): iterable
129129
$i = 0;
130130
$pattern = $pattern === '' ? '*' : $pattern;
131131
do {
132-
$result[] = $this->instance->scan(
133-
$i,
134-
$master,
135-
$pattern,
136-
10);
132+
$result[] = $this->instance->scan($i, $master, $pattern, 10);
137133
if (\count($result) > ExtendedCacheItemPoolInterface::MAX_ALL_KEYS_COUNT) {
138134
break;
139135
}

0 commit comments

Comments
 (0)