summaryrefslogtreecommitdiffstats
path: root/lib/public/imemcache.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/imemcache.php')
-rw-r--r--lib/public/imemcache.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/public/imemcache.php b/lib/public/imemcache.php
index 56a33c9572f..f8b898e54c6 100644
--- a/lib/public/imemcache.php
+++ b/lib/public/imemcache.php
@@ -42,7 +42,7 @@ interface IMemcache extends ICache {
* @param mixed $value
* @param int $ttl Time To Live in seconds. Defaults to 60*60*24
* @return bool
- * @since 8.0.0
+ * @since 8.1.0
*/
public function add($key, $value, $ttl = 0);
@@ -52,7 +52,7 @@ interface IMemcache extends ICache {
* @param string $key
* @param int $step
* @return int | bool
- * @since 8.0.0
+ * @since 8.1.0
*/
public function inc($key, $step = 1);
@@ -62,7 +62,7 @@ interface IMemcache extends ICache {
* @param string $key
* @param int $step
* @return int | bool
- * @since 8.0.0
+ * @since 8.1.0
*/
public function dec($key, $step = 1);
@@ -73,6 +73,7 @@ interface IMemcache extends ICache {
* @param mixed $old
* @param mixed $new
* @return bool
+ * @since 8.1.0
*/
public function cas($key, $old, $new);
}