Update Symfony bundles

This commit is contained in:
Benjamin Dalsass
2022-07-26 08:09:13 +02:00
committed by bdalsass
parent 31cc294cc3
commit 25a612da04
30 changed files with 456 additions and 350 deletions

View File

@@ -81,7 +81,10 @@ class ArrayAdapter implements AdapterInterface, CacheInterface, LoggerAwareInter
// ArrayAdapter works in memory, we don't care about stampede protection
if (\INF === $beta || !$item->isHit()) {
$save = true;
$this->save($item->set($callback($item, $save)));
$item->set($callback($item, $save));
if ($save) {
$this->save($item);
}
}
return $item->get();