aboutsummaryrefslogtreecommitdiff
path: root/app/Models/View.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models/View.php')
-rw-r--r--app/Models/View.php17
1 files changed, 15 insertions, 2 deletions
diff --git a/app/Models/View.php b/app/Models/View.php
index e3a591155..365bfd261 100644
--- a/app/Models/View.php
+++ b/app/Models/View.php
@@ -7,12 +7,19 @@ class FreshRSS_View extends Minz_View {
public $callbackBeforeFeeds;
public $callbackBeforePagination;
public $categories;
+ /** @var FreshRSS_Category|null */
public $category;
+ /** @var string */
public $current_user;
+ /** @var array<FreshRSS_Entry> */
public $entries;
+ /** @var FreshRSS_Entry */
public $entry;
+ /** @var FreshRSS_Feed|null */
public $feed;
+ /** @var array<FreshRSS_Feed> */
public $feeds;
+ /** @var int */
public $nbUnreadTags;
public $tags;
@@ -88,8 +95,14 @@ class FreshRSS_View extends Minz_View {
public $nbPage;
// RSS view
- public $rss_title;
- public $url;
+ /** @var string */
+ public $rss_title = '';
+ /** @var string */
+ public $rss_url = '';
+ /** @var string */
+ public $rss_base = '';
+ /** @var boolean */
+ public $internal_rendering = false;
// Content preview
public $fatalError;