aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Days.php
blob: d3f1ba075aee46e47ad2227d7ff8b6496e4f0b76 (plain)
1
2
3
4
5
6
7
8
9
<?php

declare(strict_types=1);

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