diff options
Diffstat (limited to 'app/Models/ViewStats.php')
| -rw-r--r-- | app/Models/ViewStats.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Models/ViewStats.php b/app/Models/ViewStats.php index d7bb08c5f..ca98c554a 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 array<FreshRSS_Category> */ + /** @var array<int,FreshRSS_Category> */ public array $categories; - public ?FreshRSS_Feed $feed; - /** @var array<FreshRSS_Feed> */ + public FreshRSS_Feed $feed; + /** @var array<int,FreshRSS_Feed> */ public array $feeds; public bool $displaySlider = false; |
