fix(arstechnica): plus a few unrelated tweaks (#3829)

This commit is contained in:
Dag 2023-12-13 21:40:13 +01:00 committed by GitHub
parent 0b67544f86
commit f01729c86f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 18 additions and 17 deletions

View file

@ -49,8 +49,8 @@ class FileCache implements CacheInterface
{
$item = [
'key' => $key,
'value' => $value,
'expiration' => $ttl === null ? 0 : time() + $ttl,
'value' => $value,
];
$cacheFile = $this->createCacheFile($key);
$bytes = file_put_contents($cacheFile, serialize($item), LOCK_EX);