@@ -34,14 +34,14 @@ |
||
| 34 | 34 | |
| 35 | 35 | // If caching isn't enabled then just return a void cache |
| 36 | 36 | if (!$config->get('cache.enabled', false)) |
| 37 | - { |
|
| 37 | + { |
|
| 38 | 38 | return new Cache\VoidCache; |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | $adapter = $config->get('cache.adapter', 'filesystem'); |
| 42 | 42 | |
| 43 | 43 | switch ($adapter) |
| 44 | - { |
|
| 44 | + { |
|
| 45 | 45 | case 'array': |
| 46 | 46 | $handler = new Cache\ArrayCache; |
| 47 | 47 | |