Skip to content
Snippets Groups Projects
Commit 1ab7ca0a authored by Robin Appelman's avatar Robin Appelman
Browse files

Fix some phpdoc errors and rename interface

parent 02aa44d0
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,9 @@
namespace OC\Memcache;
class Factory {
use \OCP\ICacheFactory;
class Factory implements ICacheFactory {
/**
* @var string $globalPrefix
*/
......
......@@ -8,17 +8,19 @@
namespace OCP;
interface CacheFactory{
interface ICacheFactory{
/**
* Get a memory cache instance
*
* All entries added trough the cache instance will be namespaced by $prefix to prevent collisions between apps
*
* @param string $prefix
* @return $return \OCP\ICache
* @return \OCP\ICache
*/
public function create($prefix = '');
/**
* Check if a memory cache backend is available
* Check if any memory cache backend is available
*
* @return bool
*/
......
......@@ -144,7 +144,7 @@ interface IServerContainer {
/**
* Returns an \OCP\CacheFactory instance
*
* @return \OCP\CacheFactory
* @return \OCP\ICacheFactory
*/
function getMemCacheFactory();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment