diff options
| author | 2022-06-19 20:10:13 +0200 | |
|---|---|---|
| committer | 2022-06-19 20:10:13 +0200 | |
| commit | dcc77ee343d51e32e1234c63c258d9b4e4de8a81 (patch) | |
| tree | 26722be6e9f5bd7e9500d20d32372c7a8f4b9900 /app/Models/View.php | |
| parent | a90d93979f63b48c76308ae26c845d8b58f5368d (diff) | |
Initial support for PHP 8.2 (#4421)
* Initial support for PHP 8.2
Using dev image `freshrss/freshrss:latest` https://github.com/FreshRSS/FreshRSS/pull/4420
* Deprecated string interpolation
Diffstat (limited to 'app/Models/View.php')
| -rw-r--r-- | app/Models/View.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Models/View.php b/app/Models/View.php index 944bfbea1..a46ebd95e 100644 --- a/app/Models/View.php +++ b/app/Models/View.php @@ -23,6 +23,8 @@ class FreshRSS_View extends Minz_View { /** @var int */ public $nbUnreadTags; public $tags; + /** @var array<string,string> */ + public $notification; // Substriptions public $default_category; |
