From 3c3e91368908717753f0bc71ac772c034b86fbc5 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 21 Mar 2012 11:19:29 -0500 Subject: [PATCH] Renamed Route::load to Route::forward. --- laravel/routing/route.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/routing/route.php b/laravel/routing/route.php index f87b04d3..6349a0e8 100644 --- a/laravel/routing/route.php +++ b/laravel/routing/route.php @@ -380,7 +380,7 @@ public static function filter($name, $callback) { Filter::register($name, $callback); } - + /** * Calls the specified route and returns its response. * @@ -388,7 +388,7 @@ public static function filter($name, $callback) * @param string $uri * @return Response */ - public static function load($method, $uri) + public static function forward($method, $uri) { return Router::route(strtoupper($method), $uri)->call(); }