Skip to content

Commit ef39d97

Browse files
authored
Merge pull request #782 from xyng/fix/781-pass-cache-default-param
fix: pass default-param to underlying cache-engine
2 parents 7e0de36 + 04ce650 commit ef39d97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Cache/Engine/DebugEngine.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public function get($key, $default = null)
196196
public function getMultiple($keys, $default = null): iterable
197197
{
198198
$start = microtime(true);
199-
$result = $this->_engine->getMultiple($keys);
199+
$result = $this->_engine->getMultiple($keys, $default);
200200
$duration = microtime(true) - $start;
201201

202202
$this->track('get hit');

0 commit comments

Comments
 (0)