diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-06-05 17:30:45 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-06-05 17:30:45 +0200 |
commit | 0c9604e3b2b44885647e2bc2edda95329fddbf47 (patch) | |
tree | d05c918de3ae7e2d03de1dc72754883c59637dc5 /lib/public/imemcache.php | |
parent | 9899e10a0411d161db1b4e1302690ac74c1ae72c (diff) | |
download | nextcloud-server-0c9604e3b2b44885647e2bc2edda95329fddbf47.tar.gz nextcloud-server-0c9604e3b2b44885647e2bc2edda95329fddbf47.zip |
[OCP] update PHPdoc to contain correct @since tags
Diffstat (limited to 'lib/public/imemcache.php')
-rw-r--r-- | lib/public/imemcache.php | 7 |
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); } |