瀏覽代碼

Add visibility (#4232)

* Add visibility

* Tab use

* Update app/Models/Days.php

Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Luc SANCHEZ 3 年之前
父節點
當前提交
a44e2a0d0c
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      app/Models/Days.php

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