Browse Source

Added Response::error method.

Taylor Otwell 13 years ago
parent
commit
7bbee401b2
1 changed files with 12 additions and 0 deletions
  1. 12 0
      system/response.php

+ 12 - 0
system/response.php

@@ -101,6 +101,18 @@ class Response {
 		return new static($content, $status);
 	}
 
+	/**
+	 * Factory for creating new error response instances.
+	 *
+	 * @param  int       $code
+	 * @param  array     $data
+	 * @return Response
+	 */
+	public static function error($code, $data = array())
+	{
+		return static::make(View::make('error/'.$code, $data), $code);
+	}
+
 	/**
 	 * Take a value returned by a route and prepare a Response instance.
 	 *