Skip to content

Commit 513d5d3

Browse files
authored
Update src/Cache/RoadRunnerStore.php
1 parent 6f83a31 commit 513d5d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Cache/RoadRunnerStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function many(array $keys)
3636
{
3737
$prefixedKeys = \array_map(fn($key) => $this->prefix . $key, $keys);
3838

39-
return array_combine($keys, \iterator_to_array($this->storage->getMultiple($prefixedKeys)));
39+
return \array_combine($keys, \iterator_to_array($this->storage->getMultiple($prefixedKeys)));
4040
}
4141

4242
public function put($key, $value, $seconds)

0 commit comments

Comments
 (0)