Formatting Cache class.

This commit is contained in:
Taylor Otwell 2011-07-06 13:40:34 -07:00
parent a3401d5247
commit 1e84c8901a
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ public static function __callStatic($method, $parameters)
// 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);
}