added more facades.

This commit is contained in:
Taylor Otwell
2011-09-03 23:05:06 -05:00
parent 31e2c1c49e
commit 2d170e2314
9 changed files with 38 additions and 45 deletions

View File

@@ -6,6 +6,10 @@ abstract class Facade {
* Magic Method for passing methods to a class registered in the IoC container.
* This provides a convenient method of accessing functions on classes that
* could not otherwise be accessed staticly.
*
* Facades allow Laravel to still have a high level of dependency injection
* and testability while still accomodating the common desire to conveniently
* use classes via static methods.
*/
public static function __callStatic($method, $parameters)
{