Skip to content
Snippets Groups Projects
Commit 07dd571a authored by Rami Jasim's avatar Rami Jasim Committed by Jan-Hendrik Willms
Browse files

Cache::getItems sollte associative array liefern

Closes #4740

Merge request !3539
parent 0142b925
No related branches found
No related tags found
No related merge requests found
......@@ -149,10 +149,7 @@ abstract class Cache implements CacheItemPoolInterface
{
$items = [];
foreach ($keys as $key) {
$item = $this->getItem($key);
if ($item instanceof Item) {
$items[] = $item;
}
$items[$key] = $this->getItem($key);
}
return $items;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment