diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-11 10:46:46 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-12-11 10:46:46 +0100 |
commit | c022128630675a199cd8fb839af74159391c0749 (patch) | |
tree | e876d51fa63870ff2947d86af7f6985683b13742 | |
parent | aa476d6d2a201c143dea91e175c37db7bbb67ad9 (diff) | |
parent | 4569d88879d2a34c00d9356355c34039b783d262 (diff) | |
download | nextcloud-server-c022128630675a199cd8fb839af74159391c0749.tar.gz nextcloud-server-c022128630675a199cd8fb839af74159391c0749.zip |
Merge pull request #21131 from owncloud/update-public-api
IMemcacheTTL was backported to 8.2.2
-rw-r--r-- | lib/public/imemcachettl.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/imemcachettl.php b/lib/public/imemcachettl.php index a4a7a530549..3c2bfe8ad27 100644 --- a/lib/public/imemcachettl.php +++ b/lib/public/imemcachettl.php @@ -24,7 +24,7 @@ namespace OCP; /** * Interface for memcache backends that support setting ttl after the value is set * - * @since 9.0.0 + * @since 8.2.2 */ interface IMemcacheTTL extends IMemcache { /** @@ -32,7 +32,7 @@ interface IMemcacheTTL extends IMemcache { * * @param string $key * @param int $ttl time to live in seconds - * @since 9.0.0 + * @since 8.2.2 */ public function setTTL($key, $ttl); } |