diff --git a/system/cache.php b/system/cache.php index d5998bb0..90c12219 100644 --- a/system/cache.php +++ b/system/cache.php @@ -54,7 +54,10 @@ public static function driver($driver = null) */ 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))) {