mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-29 19:51:20 -04:00
Fix regressions on some array structures (#7155)
regressions from https://github.com/FreshRSS/FreshRSS/pull/7131 fix https://github.com/FreshRSS/FreshRSS/issues/7154
This commit is contained in:
committed by
GitHub
parent
33cdfbb309
commit
c29cbb7b8b
@@ -3,11 +3,11 @@ declare(strict_types=1);
|
||||
|
||||
final class FreshRSS_ViewJavascript extends FreshRSS_View {
|
||||
|
||||
/** @var list<FreshRSS_Category> */
|
||||
/** @var array<int,FreshRSS_Category> where the key is the category ID */
|
||||
public array $categories;
|
||||
/** @var list<FreshRSS_Feed> */
|
||||
/** @var array<int,FreshRSS_Feed> where the key is the feed ID */
|
||||
public array $feeds;
|
||||
/** @var list<FreshRSS_Tag> */
|
||||
/** @var array<int,FreshRSS_Tag> where the key is the label ID */
|
||||
public array $tags;
|
||||
|
||||
public string $nonce;
|
||||
|
||||
Reference in New Issue
Block a user