]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/OpenWebAuthToken.php
Merge pull request #10969 from MrPetovan/task/remove-private-contacts
[friendica.git] / src / Model / OpenWebAuthToken.php
index 7c14cd3046c24bcad7bd56d74c3e5f1111aa15f5..d0fc046ea62d44bc3680c2e88502ab36e842d423 100644 (file)
@@ -1,8 +1,24 @@
 <?php
-
 /**
- * @file src/Model/OpenWebAuthToken.php
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
+
 namespace Friendica\Model;
 
 use Friendica\Database\DBA;
@@ -16,12 +32,13 @@ class OpenWebAuthToken
        /**
         * Create an entry in the 'openwebauth-token' table.
         *
-        * @param string $type   Verify type.
-        * @param int    $uid    The user ID.
+        * @param string $type Verify type.
+        * @param int    $uid  The user ID.
         * @param string $token
         * @param string $meta
         *
         * @return boolean
+        * @throws \Exception
         */
        public static function create($type, $uid, $token, $meta)
        {
@@ -38,11 +55,12 @@ class OpenWebAuthToken
        /**
         * Get the "meta" field of an entry in the openwebauth-token table.
         *
-        * @param string $type   Verify type.
-        * @param int    $uid    The user ID.
+        * @param string $type Verify type.
+        * @param int    $uid  The user ID.
         * @param string $token
         *
         * @return string|boolean The meta enry or false if not found.
+        * @throws \Exception
         */
        public static function getMeta($type, $uid, $token)
        {
@@ -62,6 +80,7 @@ class OpenWebAuthToken
         *
         * @param string $type     Verify type.
         * @param string $interval SQL compatible time interval
+        * @throws \Exception
         */
        public static function purge($type, $interval)
        {