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/ViewStats.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/Models/ViewStats.php') diff --git a/app/Models/ViewStats.php b/app/Models/ViewStats.php index e8e0a37bc..89b7d8af4 100644 --- a/app/Models/ViewStats.php +++ b/app/Models/ViewStats.php @@ -3,10 +3,10 @@ declare(strict_types=1); final class FreshRSS_ViewStats extends FreshRSS_View { - /** @var list */ + /** @var array where the key is the category ID */ public array $categories; public ?FreshRSS_Feed $feed = null; - /** @var list */ + /** @var array where the key is the feed ID */ public array $feeds; public bool $displaySlider = false; -- cgit v1.2.3