]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
re-added doc-tag and removed double-declaration
authorRoland Haeder <roland@mxchange.org>
Mon, 27 Mar 2017 19:41:27 +0000 (21:41 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 29 Mar 2020 22:21:45 +0000 (00:21 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
classes/Notice.php

index 2cd441d3b86c29eb581e5f337fa1271a12ac28e5..4adba3530769eba497189171b04a7833af57032b 100644 (file)
@@ -2862,6 +2862,11 @@ class Notice extends Managed_DataObject
         return !($is_local === Notice::LOCAL_NONPUBLIC || $is_local === Notice::GATEWAY);
     }
 
+    /**
+     * Checks whether this notice is in "private scope" (non-public notice)
+     *
+     * @return $isPrivate Whether this notice is private
+     */
     public function isPrivateScope () {
         return ($this->scope != Notice::SITE_SCOPE &&
                 $this->scope != Notice::PUBLIC_SCOPE);
@@ -3285,17 +3290,6 @@ class Notice extends Managed_DataObject
         }
     }
 
-    /**
-     * Checks whether this notice is in "private scope" (non-public notice)
-     *
-     * @return $isPrivate Whether this notice is private
-     */
-    public function isPrivateScope ()
-    {
-        return ($this->scope != Notice::SITE_SCOPE &&
-                $this->scope != Notice::PUBLIC_SCOPE);
-    }
-
     /**
      * Checks whether the current profile is allowed (in scope) to see this notice.
      *