summaryrefslogtreecommitdiffstats
path: root/lib/cache
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-09-18 22:22:51 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-09-18 22:22:51 +0200
commit1274d6116dc59a8238ad9d02d467260387fe2eac (patch)
tree8509cac611bd32ebff26f7bbedfb6eaf2ed33e2c /lib/cache
parent09d043729a41a0e8966ed3bb81567ed1009a37b6 (diff)
downloadnextcloud-server-1274d6116dc59a8238ad9d02d467260387fe2eac.tar.gz
nextcloud-server-1274d6116dc59a8238ad9d02d467260387fe2eac.zip
updating php docs
Diffstat (limited to 'lib/cache')
-rw-r--r--lib/cache/broker.php8
-rw-r--r--lib/cache/usercache.php4
2 files changed, 10 insertions, 2 deletions
diff --git a/lib/cache/broker.php b/lib/cache/broker.php
index b7f1b67a6d3..9b7e837e1bc 100644
--- a/lib/cache/broker.php
+++ b/lib/cache/broker.php
@@ -9,7 +9,15 @@
namespace OC\Cache;
class Broker {
+
+ /**
+ * @var \OC\Cache
+ */
protected $fast_cache;
+
+ /**
+ * @var \OC\Cache
+ */
protected $slow_cache;
public function __construct($fast_cache, $slow_cache) {
diff --git a/lib/cache/usercache.php b/lib/cache/usercache.php
index aac3b39af33..baa8820700b 100644
--- a/lib/cache/usercache.php
+++ b/lib/cache/usercache.php
@@ -13,7 +13,7 @@ namespace OC\Cache;
class UserCache implements \OCP\ICache {
/**
- * @var OC\Cache\File $userCache
+ * @var \OC\Cache\File $userCache
*/
protected $userCache;
@@ -68,7 +68,7 @@ class UserCache implements \OCP\ICache {
/**
* clear the user cache of all entries starting with a prefix
- * @param string prefix (optional)
+ * @param string $prefix (optional)
* @return bool
*/
public function clear($prefix = '') {