diff options
| author | 2025-01-10 08:13:09 +0100 | |
|---|---|---|
| committer | 2025-01-10 08:13:09 +0100 | |
| commit | 5368f38753a3e655ed3d7d7dfc7af2cc22de7980 (patch) | |
| tree | decb975aa750660cea965bf61399df2335493b9d /app/Models/View.php | |
| parent | 3280ec617f8081bf0d5349e441ae564a42fdc500 (diff) | |
Reduce undeeded use of elvis operator ?: (#7204)
Diffstat (limited to 'app/Models/View.php')
| -rw-r--r-- | app/Models/View.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/View.php b/app/Models/View.php index 943c50055..dd616b888 100644 --- a/app/Models/View.php +++ b/app/Models/View.php @@ -24,7 +24,7 @@ class FreshRSS_View extends Minz_View { public int $nbUnreadTags; /** @var array<int,FreshRSS_Tag> where the key is the label ID */ public array $tags; - /** @var array<int,array{id:int,name:string,checked:bool}> */ + /** @var list<array{id:int,name:string,checked:bool}> */ public array $tagsForEntry; /** @var array<string,array<string>> */ public array $tagsForEntries; |
