mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-25 05:37:56 -05:00
* Require PHP 7.4+ https://github.com/FreshRSS/FreshRSS/discussions/5474 * Update Docker oldest Alpine 3.13 with PHP 7.4.26 * Add missing packets to Docker oldest * Update to typed properties https://php.net/migration74.new-features#migration74.new-features.core.typed-properties * More types
17 lines
318 B
PHP
17 lines
318 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
final class FreshRSS_ViewJavascript extends FreshRSS_View {
|
|
|
|
/** @var array<FreshRSS_Category> */
|
|
public array $categories;
|
|
/** @var array<FreshRSS_Feed> */
|
|
public array $feeds;
|
|
/** @var array<FreshRSS_Tag> */
|
|
public array $tags;
|
|
|
|
public string $nonce;
|
|
public string $salt1;
|
|
}
|