mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-02 02:17:48 -05:00
* Minor update whitespace PHPCS rules To simplify our configuration, apply more rules, and be clearer about what is added or removed compared with PSR12. Does not change our current conventions, but just a bit more consistent. * Forgotten *.phtml * Sort exclusion patterns + add a few for Extensions repo * Relaxed some rules
48 lines
1.6 KiB
PHP
48 lines
1.6 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
final class FreshRSS_ViewStats extends FreshRSS_View {
|
|
|
|
/** @var array<int,FreshRSS_Category> */
|
|
public array $categories;
|
|
public FreshRSS_Feed $feed;
|
|
/** @var array<int,FreshRSS_Feed> */
|
|
public array $feeds;
|
|
public bool $displaySlider = false;
|
|
|
|
public float $average;
|
|
public float $averageDayOfWeek;
|
|
public float $averageHour;
|
|
public float $averageMonth;
|
|
/** @var array<string> */
|
|
public array $days;
|
|
/** @var array<string,array<int,int|string>> */
|
|
public array $entryByCategory;
|
|
/** @var array<int,int> */
|
|
public array $entryCount;
|
|
/** @var array<string,array<int,int|string>> */
|
|
public array $feedByCategory;
|
|
/** @var array<int, string> */
|
|
public array $hours24Labels;
|
|
/** @var array<string,array<int,array<string,int|string>>> */
|
|
public array $idleFeeds;
|
|
/** @var array<int,string> */
|
|
public array $last30DaysLabel;
|
|
/** @var array<int,string> */
|
|
public array $last30DaysLabels;
|
|
/** @var array<string,string> */
|
|
public array $months;
|
|
/** @var array{'total':int,'count_unreads':int,'count_reads':int,'count_favorites':int}|false */
|
|
public $repartition;
|
|
/** @var array{'main_stream':array{'total':int,'count_unreads':int,'count_reads':int,'count_favorites':int}|false,'all_feeds':array{'total':int,'count_unreads':int,'count_reads':int,'count_favorites':int}|false} */
|
|
public array $repartitions;
|
|
/** @var array<int,int> */
|
|
public array $repartitionDayOfWeek;
|
|
/** @var array<string,int>|array<int,int> */
|
|
public array $repartitionHour;
|
|
/** @var array<int,int> */
|
|
public array $repartitionMonth;
|
|
/** @var array<array{'id':int,'name':string,'category':string,'count':int}> */
|
|
public array $topFeed;
|
|
}
|