]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Cache/IMemoryCacheDriver.php
Merge pull request #6612 from MrPetovan/bug/6605-cache-config-adapter-connection
[friendica.git] / src / Core / Cache / IMemoryCacheDriver.php
index 7843ca7b5fb86ac65bad8a47fe01fe5794409b3b..0c5146f4399a01b186406eb24653bfef8d8de924 100644 (file)
@@ -4,7 +4,7 @@ namespace Friendica\Core\Cache;
 use Friendica\Core\Cache;
 
 /**
- * @brief This interface defines methods for Memory-Caches only
+ * This interface defines methods for Memory-Caches only
  *
  * Interface IMemoryCacheDriver
  *
@@ -13,7 +13,7 @@ use Friendica\Core\Cache;
 interface IMemoryCacheDriver extends ICacheDriver
 {
        /**
-        * @brief Sets a value if it's not already stored
+        * Sets a value if it's not already stored
         *
         * @param string $key      The cache key
         * @param mixed  $value    The old value we know from the cache
@@ -23,23 +23,23 @@ interface IMemoryCacheDriver extends ICacheDriver
        public function add($key, $value, $ttl = Cache::FIVE_MINUTES);
 
        /**
-        * @brief Compares if the old value is set and sets the new value
+        * Compares if the old value is set and sets the new value
         *
         * @param string $key         The cache key
         * @param mixed  $oldValue    The old value we know from the cache
         * @param mixed  $newValue    The new value we want to set
-        * @param int    $ttl              The cache lifespan, must be one of the Cache constants
+        * @param int    $ttl             The cache lifespan, must be one of the Cache constants
         *
         * @return bool
         */
        public function compareSet($key, $oldValue, $newValue, $ttl = Cache::FIVE_MINUTES);
 
        /**
-        * @brief Compares if the old value is set and removes it
+        * Compares if the old value is set and removes it
         *
         * @param string $key          The cache key
         * @param mixed  $value        The old value we know and want to delete
         * @return bool
         */
        public function compareDelete($key, $value);
-}
\ No newline at end of file
+}