diff options
Diffstat (limited to 'lib/cache/broker.php')
-rw-r--r-- | lib/cache/broker.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/cache/broker.php b/lib/cache/broker.php index a161dbfa3bb..9b7e837e1bc 100644 --- a/lib/cache/broker.php +++ b/lib/cache/broker.php @@ -6,8 +6,18 @@ * See the COPYING-README file. */ -class OC_Cache_Broker { +namespace OC\Cache; + +class Broker { + + /** + * @var \OC\Cache + */ protected $fast_cache; + + /** + * @var \OC\Cache + */ protected $slow_cache; public function __construct($fast_cache, $slow_cache) { |