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

@@ -718,7 +718,7 @@ class HttpCache implements HttpKernelInterface, TerminableInterface
$timeout = $this->options['stale_while_revalidate'];
}
return abs($entry->getTtl()) < $timeout;
return abs($entry->getTtl() ?? 0) < $timeout;
}
/**