Browse Source

Revert "Make view with response status and headers"

This reverts commit 036a0bab0bd05cf2f8086363c35adc104a7cf631.
Dmitriy A. Golev 11 years ago
parent
commit
70f2836060
1 changed files with 0 additions and 22 deletions
  1. 0 22
      laravel/response.php

+ 0 - 22
laravel/response.php

@@ -57,28 +57,6 @@ class Response {
 	{
 	{
 		return new static($content, $status, $headers);
 		return new static($content, $status, $headers);
 	}
 	}
-	
-	/**
-	 * Create a new response instance with status code.
-	 *
-	 * <code>
-	 *		// Create a response instance with a view
-	 *		return Response::view('home.no_such_page', 404);
-	 *
-	 *		// Create a response instance with a view and data
-	 *		return Response::view('item.no_such_page', 404, array('message' => 'Nothing found'), array('header' => 'value'));
-	 * </code>
-	 *
-	 * @param  string    $view
-	 * @param  int       $status
-	 * @param  array     $data
-	 * @param  array     $headers
-	 * @return Response
-	 */
-	public static function view_with_status($view, $status, $data = array(), $headers = array())
-	{
-		return new static(View::make($view, $data), $status, $headers);
-	}
 
 
 	/**
 	/**
 	 * Create a new response instance containing a view.
 	 * Create a new response instance containing a view.