aboutsummaryrefslogtreecommitdiff
path: root/app/Models/ViewStats.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models/ViewStats.php')
-rw-r--r--app/Models/ViewStats.php4
1 files changed, 2 insertions, 2 deletions
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<FreshRSS_Category> */
+ /** @var array<int,FreshRSS_Category> where the key is the category ID */
public array $categories;
public ?FreshRSS_Feed $feed = null;
- /** @var list<FreshRSS_Feed> */
+ /** @var array<int,FreshRSS_Feed> where the key is the feed ID */
public array $feeds;
public bool $displaySlider = false;