blob: d7a8ca71489d87be3abaf38a14c7b5583cab5a66 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?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;
}
|