Browse Source

Formatting Cache class.

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

+ 1 - 0
system/cache.php

@@ -38,6 +38,7 @@ class Cache {
 		// Passing method calls to the driver instance provides a better API for the
 		// developer. For instance, instead of saying Cache::driver()->foo(), we can
 		// now just say Cache::foo().
+
 		return call_user_func_array(array(static::driver(), $method), $parameters);
 	}