Browse Source

Refactoring the cache class.

Taylor Otwell 13 years ago
parent
commit
ee5212a27f
1 changed files with 4 additions and 1 deletions
  1. 4 1
      system/cache.php

+ 4 - 1
system/cache.php

@@ -54,7 +54,10 @@ class Cache {
 	 */	
 	public static function get($key, $default = null, $driver = null)
 	{
-		if (is_null($driver)) $driver = Config::get('cache.driver');
+		if (is_null($driver))
+		{
+			$driver = Config::get('cache.driver');
+		}
 
 		if (is_null($item = static::driver($driver)->get($key)))
 		{