Merge pull request #21131 from owncloud/update-public-api

IMemcacheTTL was backported to 8.2.2
This commit is contained in:
Thomas Müller 2015-12-11 10:46:46 +01:00
commit c022128630
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}