summaryrefslogtreecommitdiffstats
path: root/lib/cache.php
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2013-09-18 15:02:25 +0200
committerThomas Tanghus <thomas@tanghus.net>2013-09-18 15:02:25 +0200
commit09d043729a41a0e8966ed3bb81567ed1009a37b6 (patch)
tree9d7f81a609953e924d4a5059c1bb616a18eb0111 /lib/cache.php
parent79cd655920ae3346725539df2f443a66e51c5726 (diff)
downloadnextcloud-server-09d043729a41a0e8966ed3bb81567ed1009a37b6.tar.gz
nextcloud-server-09d043729a41a0e8966ed3bb81567ed1009a37b6.zip
Note to self 2: Do as you preach. Test!
Diffstat (limited to 'lib/cache.php')
-rw-r--r--lib/cache.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/cache.php b/lib/cache.php
index c99663a0ca5..a4fa8be710c 100644
--- a/lib/cache.php
+++ b/lib/cache.php
@@ -6,7 +6,7 @@
* See the COPYING-README file.
*/
-namespace OC\Cache;
+namespace OC;
class Cache {
/**
@@ -24,7 +24,7 @@ class Cache {
*/
static public function getGlobalCache() {
if (!self::$global_cache) {
- self::$global_cache = new FileGlobal();
+ self::$global_cache = new Cache\FileGlobal();
}
return self::$global_cache;
}
@@ -35,7 +35,7 @@ class Cache {
*/
static public function getUserCache() {
if (!self::$user_cache) {
- self::$user_cache = new File();
+ self::$user_cache = new Cache\File();
}
return self::$user_cache;
}