mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
refactor: remove useless actual args to clearstatcache (#3503)
This commit is contained in:
parent
5e22459eb6
commit
46f0e97c73
@ -49,8 +49,10 @@ class FileCache implements CacheInterface
|
|||||||
|
|
||||||
public function getTime(): ?int
|
public function getTime(): ?int
|
||||||
{
|
{
|
||||||
|
// https://www.php.net/manual/en/function.clearstatcache.php
|
||||||
|
clearstatcache();
|
||||||
|
|
||||||
$cacheFile = $this->getCacheFile();
|
$cacheFile = $this->getCacheFile();
|
||||||
clearstatcache(false, $cacheFile);
|
|
||||||
if (file_exists($cacheFile)) {
|
if (file_exists($cacheFile)) {
|
||||||
$time = filemtime($cacheFile);
|
$time = filemtime($cacheFile);
|
||||||
if ($time !== false) {
|
if ($time !== false) {
|
||||||
|
Loading…
Reference in New Issue
Block a user