]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Lock/DatabaseLock.php
Merge pull request #9882 from MrPetovan/bug/po2php-plural-conversion
[friendica.git] / src / Core / Lock / DatabaseLock.php
index 867255200444080229f5081ac1cc03993b42fd31..4936b0680bff07cfb2da0e78a42282325d68aca3 100644 (file)
@@ -1,15 +1,35 @@
 <?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\Core\Lock;
 
-use Friendica\Core\Cache\Cache;
+use Friendica\Core\BaseLock;
+use Friendica\Core\Cache\Duration;
 use Friendica\Database\Database;
 use Friendica\Util\DateTimeFormat;
 
 /**
  * Locking driver that stores the locks in the database
  */
-class DatabaseLock extends Lock
+class DatabaseLock extends BaseLock
 {
        /**
         * The current ID of the process
@@ -35,7 +55,7 @@ class DatabaseLock extends Lock
        /**
         * (@inheritdoc)
         */
-       public function acquireLock($key, $timeout = 120, $ttl = Cache::FIVE_MINUTES)
+       public function acquire($key, $timeout = 120, $ttl = Duration::FIVE_MINUTES)
        {
                $got_lock = false;
                $start    = time();
@@ -74,7 +94,7 @@ class DatabaseLock extends Lock
        /**
         * (@inheritdoc)
         */
-       public function releaseLock($key, $override = false)
+       public function release($key, $override = false)
        {
                if ($override) {
                        $where = ['name' => $key];
@@ -131,7 +151,7 @@ class DatabaseLock extends Lock
         */
        public function getName()
        {
-               return self::TYPE_DATABASE;
+               return Type::DATABASE;
        }
 
        /**