Renamed Route::load to Route::forward.

This commit is contained in:
Taylor Otwell 2012-03-21 11:19:29 -05:00
parent 6e82a4ac8d
commit 3c3e913689
1 changed files with 2 additions and 2 deletions

View File

@ -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();
}