]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Cache/TraitCompareDelete.php
code standards / simplifications
[friendica.git] / src / Core / Cache / TraitCompareDelete.php
index 898e39aecc7d7cd9731d203082d9f2ebb5c1358b..ef59f69cd17f4fd1a5d868337d4d517720480b68 100644 (file)
@@ -7,7 +7,7 @@ use Friendica\Core\Cache;
 /**
  * Trait TraitCompareSetDelete
  *
- * @brief This Trait is to compensate non native "exclusive" sets/deletes in caches
+ * This Trait is to compensate non native "exclusive" sets/deletes in caches
  *
  * @package Friendica\Core\Cache
  */
@@ -22,7 +22,7 @@ trait TraitCompareDelete
        abstract public function add($key, $value, $ttl = Cache::FIVE_MINUTES);
 
        /**
-        * @brief NonNative - Compares if the old value is set and removes it
+        * NonNative - 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
@@ -42,4 +42,4 @@ trait TraitCompareDelete
                        return false;
                }
        }
-}
\ No newline at end of file
+}