Browse Source

fleshed out redirect::to_action

Taylor Otwell 13 years ago
parent
commit
89ea17d9d9
1 changed files with 10 additions and 2 deletions
  1. 10 2
      laravel/redirect.php

+ 10 - 2
laravel/redirect.php

@@ -35,9 +35,17 @@ class Redirect extends Response {
 		return static::to($url, $status, true);
 	}
 
-	public static function to_action($action, $parameters = array())
+	/**
+	 * Create a redirect response to a controller action.
+	 *
+	 * @param  string    $action
+	 * @param  array     $parameters
+	 * @param  int       $status
+	 * @return Redirect
+	 */
+	public static function to_action($action, $parameters = array(), $status = 302)
 	{
-		
+		return static::to(URL::to_action($action, $parameters), $status);
 	}
 
 	/**