aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Days.php
blob: c445c6355830211e6464d7a757a3aa0b9fd21b77 (plain)
1
2
3
4
5
6
7
8
<?php
declare(strict_types=1);

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