Commit 1e84c890 authored by Taylor Otwell's avatar Taylor Otwell

Formatting Cache class.

parent a3401d52
...@@ -38,6 +38,7 @@ class Cache { ...@@ -38,6 +38,7 @@ class Cache {
// Passing method calls to the driver instance provides a better API for the // Passing method calls to the driver instance provides a better API for the
// developer. For instance, instead of saying Cache::driver()->foo(), we can // developer. For instance, instead of saying Cache::driver()->foo(), we can
// now just say Cache::foo(). // now just say Cache::foo().
return call_user_func_array(array(static::driver(), $method), $parameters); return call_user_func_array(array(static::driver(), $method), $parameters);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment