mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-23 04:38:01 -05:00
* Type hinting and doc * fix cs * Remove declare strict * Remove declare strict * Pass PHPStan level 9 Revert too boolean syntax * Minor wording * Fix revert typo --------- Co-authored-by: Luc <sanchezluc+freshrss@gmail.com> Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
10 lines
147 B
PHP
10 lines
147 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
class FreshRSS_Days {
|
|
public const TODAY = 0;
|
|
public const YESTERDAY = 1;
|
|
public const BEFORE_YESTERDAY = 2;
|
|
}
|