From c29cbb7b8be95fee249ed1a21dce98a4772d92e2 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sat, 28 Dec 2024 23:58:00 +0100 Subject: Fix regressions on some array structures (#7155) regressions from https://github.com/FreshRSS/FreshRSS/pull/7131 fix https://github.com/FreshRSS/FreshRSS/issues/7154 --- app/Models/ViewJavascript.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'app/Models/ViewJavascript.php') diff --git a/app/Models/ViewJavascript.php b/app/Models/ViewJavascript.php index 26280627f..d7a8ca714 100644 --- a/app/Models/ViewJavascript.php +++ b/app/Models/ViewJavascript.php @@ -3,11 +3,11 @@ declare(strict_types=1); final class FreshRSS_ViewJavascript extends FreshRSS_View { - /** @var list */ + /** @var array where the key is the category ID */ public array $categories; - /** @var list */ + /** @var array where the key is the feed ID */ public array $feeds; - /** @var list */ + /** @var array where the key is the label ID */ public array $tags; public string $nonce; -- cgit v1.2.3