From b417ed784fd8bc5ab29aaaf2473e7cf088a25cb1 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Fri, 8 May 2026 16:06:08 +0400 Subject: [PATCH] docs(storage): document streamed cache load type --- app/controllers/shared/api.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/shared/api.php b/app/controllers/shared/api.php index 1d9e1a5d97..a101ce7814 100644 --- a/app/controllers/shared/api.php +++ b/app/controllers/shared/api.php @@ -640,6 +640,7 @@ Http::init() new Filesystem($cachePath, true) ); $timestamp = 60 * 60 * 24 * 180; // Temporarily increase the TTL to 180 day to ensure files in the cache are still fetched. + /* @type resource|false $data */ $data = $cache->load($key, $timestamp); if (! empty($data) && ! $cacheLog->isEmpty()) {