Skip to content

Commit 04ce650

Browse files
committed
fix: pass param $default to underlying cache-engine
fixes #781
1 parent 7e0de36 commit 04ce650

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)