Skip to content

Commit 8694d09

Browse files
committed
Fix!
1 parent 6880ff5 commit 8694d09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ArrayCachePool.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class ArrayCachePool extends AbstractCachePool
2929
*/
3030
public function __construct(array &$cache = [])
3131
{
32-
$this->cache = $cache;
32+
$this->cache = &$cache;
3333
}
3434

3535
protected function fetchObjectFromCache($key)

0 commit comments

Comments
 (0)