From: Morris Jobke Date: Thu, 10 Dec 2015 18:00:07 +0000 (+0100) Subject: IMemcacheTTL was backported to 8.2.2 X-Git-Tag: v9.0beta1~503^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4569d88879d2a34c00d9356355c34039b783d262;p=nextcloud-server.git IMemcacheTTL was backported to 8.2.2 see #21113 --- 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); }