mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2025-12-23 21:47:44 -05:00
regressions from https://github.com/FreshRSS/FreshRSS/pull/7131 fix https://github.com/FreshRSS/FreshRSS/issues/7154
16 lines
421 B
PHP
16 lines
421 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
final class FreshRSS_ViewJavascript extends FreshRSS_View {
|
|
|
|
/** @var array<int,FreshRSS_Category> where the key is the category ID */
|
|
public array $categories;
|
|
/** @var array<int,FreshRSS_Feed> where the key is the feed ID */
|
|
public array $feeds;
|
|
/** @var array<int,FreshRSS_Tag> where the key is the label ID */
|
|
public array $tags;
|
|
|
|
public string $nonce;
|
|
public string $salt1;
|
|
}
|