summaryrefslogtreecommitdiffstats
path: root/system/libraries/Cache
diff options
context:
space:
mode:
authorAnton Lindqvist <anton@qvister.se>2012-04-25 12:32:58 +0200
committerAnton Lindqvist <anton@qvister.se>2012-04-25 12:32:58 +0200
commit3093042b0f5eafac61a49662ab52e06313eca810 (patch)
treed0d6a6397f99fa15dd5f2a5ba04784ec531b110d /system/libraries/Cache
parent92f10e837d132f9866626d3f2e0a633b22329ebb (diff)
Align and sort valid cache drivers.
Diffstat (limited to 'system/libraries/Cache')
-rw-r--r--system/libraries/Cache/Cache.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/system/libraries/Cache/Cache.php b/system/libraries/Cache/Cache.php
index 16d83432b..82657ce58 100644
--- a/system/libraries/Cache/Cache.php
+++ b/system/libraries/Cache/Cache.php
@@ -37,13 +37,13 @@
class CI_Cache extends CI_Driver_Library {
protected $valid_drivers = array(
- 'cache_apc',
- 'cache_file',
- 'cache_memcached',
- 'cache_dummy',
- 'cache_wincache',
- 'cache_redis'
- );
+ 'cache_apc',
+ 'cache_dummy'
+ 'cache_file',
+ 'cache_memcached'
+ 'cache_redis',
+ 'cache_wincache'
+ );
protected $_cache_path = NULL; // Path of cache files (if file-based cache)
protected $_adapter = 'dummy';