]> git.mxchange.org Git - friendica.git/commitdiff
Deleting parameter-types of methods (lack of support in PHP 5.6)
authorPhilipp Holzer <admin@philipp.info>
Thu, 28 Jun 2018 21:06:14 +0000 (23:06 +0200)
committerPhilipp Holzer <admin@philipp.info>
Thu, 28 Jun 2018 21:06:14 +0000 (23:06 +0200)
src/Core/Cache/CacheDriverFactory.php
src/Core/Lock/AbstractLockDriver.php
src/Core/Lock/CacheLockDriver.php
src/Core/Lock/DatabaseLockDriver.php
src/Core/Lock/ILockDriver.php
src/Core/Lock/SemaphoreLockDriver.php

index e9ff4331d74d6e22e0c686d306058b937d561fe1..45cc17a52fbf8e7ca87665a664d32bba2c24ebb3 100644 (file)
@@ -20,7 +20,7 @@ class CacheDriverFactory
         * @return ICacheDriver  The instance of the CacheDriver
         * @throws \Exception    The exception if something went wrong during the CacheDriver creation
         */
-       public static function create(string $driver) {
+       public static function create($driver) {
 
                switch ($driver) {
                        case 'memcache':
index 4c2bfaec9545ffe25715c3a7d635e1b633f57e57..bcce26129c935d358ce511bc85e57c9878ee3814 100644 (file)
@@ -22,7 +22,7 @@ abstract class AbstractLockDriver implements ILockDriver
         * @param string key The Name of the lock
         * @return bool      Returns true if the lock is set
         */
-       protected function hasAcquiredLock(string $key) {
+       protected function hasAcquiredLock($key) {
                return isset($this->acquireLock[$key]);
        }
 
@@ -31,7 +31,7 @@ abstract class AbstractLockDriver implements ILockDriver
         *
         * @param string $key The Name of the lock
         */
-       protected function markAcquire(string $key) {
+       protected function markAcquire($key) {
                $this->acquiredLocks[$key] = true;
        }
 
@@ -40,7 +40,7 @@ abstract class AbstractLockDriver implements ILockDriver
         *
         * @param string $key The Name of the lock
         */
-       protected function markRelease(string $key) {
+       protected function markRelease($key) {
                unset($this->acquiredLocks[$key]);
        }
 
index 0adca140d16433c9fe5efcb41e739bdde71d9228..1bb768bd0f180b4abc09d52ad73afcf34cb1ea8f 100644 (file)
@@ -30,7 +30,7 @@ class CacheLockDriver extends AbstractLockDriver
         *
         * @return boolean Was the lock successful?
         */
-       public function acquireLock(string $key, int $timeout = 120)
+       public function acquireLock($key, $timeout = 120)
        {
                $got_lock = false;
                $start = time();
@@ -71,7 +71,7 @@ class CacheLockDriver extends AbstractLockDriver
         *
         * @return mixed
         */
-       public function releaseLock(string $key)
+       public function releaseLock($key)
        {
                $cachekey = get_app()->get_hostname() . ";lock:" . $key;
                $lock = $this->cache->get($cachekey);
index f9878340cf3efac5f513dd9a6df6cbe68f63a931..9b415753fceecec0663900c682a2e8d5618b1539 100644 (file)
@@ -18,7 +18,7 @@ class DatabaseLockDriver extends AbstractLockDriver
         *
         * @return boolean Was the lock successful?
         */
-       public function acquireLock(string $key, int $timeout = 120)
+       public function acquireLock($key, $timeout = 120)
        {
                $got_lock = false;
                $start = time();
@@ -66,7 +66,7 @@ class DatabaseLockDriver extends AbstractLockDriver
         *
         * @return mixed
         */
-       public function releaseLock(string $key)
+       public function releaseLock($key)
        {
                dba::delete('locks', ['locked' => false, 'pid' => 0], ['name' => $key, 'pid' => getmypid()]);
 
index 39e4ba8e89809ccbfa46cd727ebea75aafff0706..8744d757f10688205ddbd90dadc0724286fc25b6 100644 (file)
@@ -18,7 +18,7 @@ interface ILockDriver
         *
         * @return boolean Was the lock successful?
         */
-       public function acquireLock(string $key, int $timeout = 120);
+       public function acquireLock($key, $timeout = 120);
 
        /**
         * @brief Releases a lock if it was set by us
@@ -27,7 +27,7 @@ interface ILockDriver
         *
         * @return void
         */
-       public function releaseLock(string $key);
+       public function releaseLock($key);
 
        /**
         * @brief Releases all lock that were set by us
index 4eb30b9d02f6ff74f784d45f3fd91b128cc4c2da..39e3e1d32c69e3addd2fb3e0f8324c2d717a21c5 100644 (file)
@@ -18,7 +18,7 @@ class SemaphoreLockDriver extends AbstractLockDriver
         *
         * @return integer the semaphore key
         */
-       private static function semaphoreKey(string $key)
+       private static function semaphoreKey($key)
        {
                $temp = get_temppath();
 
@@ -40,7 +40,7 @@ class SemaphoreLockDriver extends AbstractLockDriver
         *
         * @return boolean Was the lock successful?
         */
-       public function acquireLock(string $key, int $timeout = 120)
+       public function acquireLock($key, $timeout = 120)
        {
                $this->acquiredLocks[$key] = sem_get(self::semaphoreKey($key));
                if ($this->acquiredLocks[$key]) {
@@ -55,7 +55,7 @@ class SemaphoreLockDriver extends AbstractLockDriver
         *
         * @return mixed
         */
-       public function releaseLock(string $key)
+       public function releaseLock($key)
        {
                if (empty($this->acquiredLocks[$key])) {
                        return false;