minor consistency cleanup

This commit is contained in:
Michael Save 2012-08-27 21:50:15 +10:00
parent eb146d9201
commit 913010cff5
11 changed files with 35 additions and 323 deletions

View file

@ -20,7 +20,7 @@ class Cache {
self::$cache->addServers($config['cache']['memcached']);
break;
case 'php':
self::$cache = Array();
self::$cache = array();
break;
}
}
@ -112,7 +112,7 @@ class Cache {
case 'apc':
return apc_clear_cache('user');
case 'php':
self::$cache[$key] = Array();
self::$cache[$key] = array();
break;
}