]> git.mxchange.org Git - friendica.git/blobdiff - tests/Util/DbaLockMockTrait.php
Merge pull request #8649 from annando/annando/issue8550
[friendica.git] / tests / Util / DbaLockMockTrait.php
index 3f76edb884061da33ea28bd7c15335a1538b3f17..e38770cb2e15cb55d0a49e567ee9a292306ab8fd 100644 (file)
@@ -1,9 +1,28 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @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\Test\Util;
 
-use Friendica\Core\Cache;
-use Friendica\Core\Lock\DatabaseLockDriver;
+use Friendica\Core\Cache\Duration;
+use Friendica\Core\Lock\DatabaseLock;
 
 trait DbaLockMockTrait
 {
@@ -12,7 +31,6 @@ trait DbaLockMockTrait
 
        /**
         * Mocking acquireLock with DBA-backend
-        * @see DatabaseLockDriver::acquireLock()
         *
         * @param mixed    $key       The key to lock
         * @param int      $ttl       The TimeToLive
@@ -22,8 +40,11 @@ trait DbaLockMockTrait
         * @param bool     $rowExists True, if a row already exists in the lock table
         * @param null     $time      The current timestamp
         * @param null|int $times     How often the method will get used
+        *
+        *@see DatabaseLock::acquire()
+        *
         */
-       public function mockAcquireLock($key, $ttl = Cache::FIVE_MINUTES, $locked = false, $pid = null, $rowExists = true, $time = null, $times = null)
+       public function mockAcquireLock($key, $ttl = Duration::FIVE_MINUTES, $locked = false, $pid = null, $rowExists = true, $time = null, $times = null)
        {
                if ($time === null) {
                        $time = time();
@@ -55,12 +76,14 @@ trait DbaLockMockTrait
 
        /**
         * Mocking isLocked with DBA-backend
-        * @see DatabaseLockDriver::isLocked()
         *
         * @param mixed     $key    The key of the lock
         * @param null|bool $return True, if the key is already locked
-        * @param null      $time      The current timestamp
+        * @param null      $time   The current timestamp
         * @param null|int  $times  How often the method will get used
+        *
+        *@see DatabaseLock::isLocked()
+        *
         */
        public function mockIsLocked($key, $return = true, $time = null, $times = null)
        {
@@ -76,10 +99,12 @@ trait DbaLockMockTrait
 
        /**
         * Mocking releaseAll with DBA-backend
-        * @see DatabaseLockDriver::releaseAll()
         *
-        * @param null     $pid    The PID which was set
-        * @param null|int $times  How often the method will get used
+        * @param null     $pid   The PID which was set
+        * @param null|int $times How often the method will get used
+        *
+        *@see DatabaseLock::releaseAll()
+        *
         */
        public function mockReleaseAll($pid = null, $times = null)
        {
@@ -92,11 +117,13 @@ trait DbaLockMockTrait
 
        /**
         * Mocking ReleaseLock with DBA-backend
-        * @see DatabaseLockDriver::releaseLock()
         *
         * @param mixed    $key    The key to release
         * @param null|int $pid    The PID which was set
         * @param null|int $times  How often the method will get used
+        *
+        *@see DatabaseLock::release()
+        *
         */
        public function mockReleaseLock($key, $pid = null, $times = null)
        {