diff options
Diffstat (limited to 'app/Models/Context.php')
| -rw-r--r-- | app/Models/Context.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Models/Context.php b/app/Models/Context.php index 14bca866c..6b2043bd3 100644 --- a/app/Models/Context.php +++ b/app/Models/Context.php @@ -125,6 +125,7 @@ class FreshRSS_Context { /** * Returns if the current state includes $state parameter. + * @param int $state */ public static function isStateEnabled($state) { return self::$state & $state; @@ -132,6 +133,7 @@ class FreshRSS_Context { /** * Returns the current state with or without $state parameter. + * @param int $state */ public static function getRevertState($state) { if (self::$state & $state) { |
