aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Days.php
diff options
context:
space:
mode:
authorGravatar Luc SANCHEZ <4697568+ColonelMoutarde@users.noreply.github.com> 2022-11-14 15:04:16 +0100
committerGravatar GitHub <noreply@github.com> 2022-11-14 15:04:16 +0100
commita44e2a0d0c35c63a94abfc482955c23d9d823e4a (patch)
tree1fa01bedcbd57d8768fc123d3010ac836d58f839 /app/Models/Days.php
parent570503b7f12df7d12af29905da97131b032c7da0 (diff)
Add visibility (#4232)
* Add visibility * Tab use * Update app/Models/Days.php Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app/Models/Days.php')
-rw-r--r--app/Models/Days.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Models/Days.php b/app/Models/Days.php
index 2d770c30b..de98c5ec8 100644
--- a/app/Models/Days.php
+++ b/app/Models/Days.php
@@ -1,7 +1,7 @@
<?php
class FreshRSS_Days {
- const TODAY = 0;
- const YESTERDAY = 1;
- const BEFORE_YESTERDAY = 2;
+ public const TODAY = 0;
+ public const YESTERDAY = 1;
+ public const BEFORE_YESTERDAY = 2;
}