diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-09-18 15:02:25 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-09-18 15:02:25 +0200 |
commit | 09d043729a41a0e8966ed3bb81567ed1009a37b6 (patch) | |
tree | 9d7f81a609953e924d4a5059c1bb616a18eb0111 /lib/cache.php | |
parent | 79cd655920ae3346725539df2f443a66e51c5726 (diff) | |
download | nextcloud-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.php | 6 |
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; } |