Taylor Otwell 13 years ago
parent
commit
2f66c97806
2 changed files with 5 additions and 2 deletions
  1. 4 1
      laravel/response.php
  2. 1 1
      laravel/routing/controller.php

+ 4 - 1
laravel/response.php

@@ -205,7 +205,10 @@ class Response {
 	 */
 	public static function prepare($response)
 	{
-		if ( ! $response instanceof Response) $response = new static($response);
+		if ( ! $response instanceof Response)
+		{
+			$response = new static($response);
+		}
 
 		// We'll need to force the response to be a string before closing the session,
 		// since the developer may be using the session within a view, and we can't

+ 1 - 1
laravel/routing/controller.php

@@ -191,7 +191,7 @@ abstract class Controller {
 
 		// Again, as was the case with route closures, if the controller "before"
 		// filters return a response, it will be considered the response to the
-		// request and the controller method will not be used .
+		// request and the controller method will not be used.
 		$response = Filter::run($filters, array(), true);
 
 		if (is_null($response))