diff options
Diffstat (limited to 'app/Models/ViewJavascript.php')
-rw-r--r-- | app/Models/ViewJavascript.php | 6 |
1 files changed, 3 insertions, 3 deletions
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<FreshRSS_Category> */ + /** @var array<int,FreshRSS_Category> where the key is the category ID */ public array $categories; - /** @var list<FreshRSS_Feed> */ + /** @var array<int,FreshRSS_Feed> where the key is the feed ID */ public array $feeds; - /** @var list<FreshRSS_Tag> */ + /** @var array<int,FreshRSS_Tag> where the key is the label ID */ public array $tags; public string $nonce; |