Files
FreshRSS/app/Models/Days.php
Luc SANCHEZ 40aa8b9264 Type hinting and doc (#5063)
* 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>
2023-02-03 14:35:59 +01:00

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;
}