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 2b3c87537..26280627f 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 array<int,FreshRSS_Category> */ + /** @var list<FreshRSS_Category> */ public array $categories; - /** @var array<int,FreshRSS_Feed> */ + /** @var list<FreshRSS_Feed> */ public array $feeds; - /** @var array<int,FreshRSS_Tag> */ + /** @var list<FreshRSS_Tag> */ public array $tags; public string $nonce; |
