Skip to content

Commit 9549e12

Browse files
committed
Added simple-cache dependency. Added Decorator implementation (v1).
1 parent 2ddec18 commit 9549e12

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
@@ -88,7 +88,7 @@ public function getMultiple($keys, $default = null)
8888

8989
$data = $this->cache->getMultiple($keys, $default);
9090

91-
// As ordering is configraution dependent, we are remapping the results.
91+
// As ordering is configraution dependent, remap the results.
9292
$result = [];
9393
foreach ($data as $key => $value) {
9494
$result[$keysMap[$key]] = $value;

0 commit comments

Comments
 (0)