Skip to content

Commit cb022a1

Browse files
authored
Cs fixes (#195)
1 parent 67a93af commit cb022a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PrefixedSimpleCache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function getMultiple($keys, $default = null)
9191
// As ordering is configraution dependent, remap the results.
9292
$result = [];
9393
foreach ($data as $key => $value) {
94-
$result[$keysMap[$key]] = $value;
94+
$result[$keysMap[$key]] = $value;
9595
}
9696

9797
return $result;

0 commit comments

Comments
 (0)