Files
FreshRSS/app/Models/Days.php
Luc SANCHEZ a44e2a0d0c Add visibility (#4232)
* Add visibility

* Tab use

* Update app/Models/Days.php

Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
2022-11-14 15:04:16 +01:00

8 lines
121 B
PHP

<?php
class FreshRSS_Days {
public const TODAY = 0;
public const YESTERDAY = 1;
public const BEFORE_YESTERDAY = 2;
}