Browse Source

tweaking.

Taylor Otwell 13 years ago
parent
commit
04eea426e8
2 changed files with 2 additions and 1 deletions
  1. 1 0
      laravel/documentation/changes.md
  2. 1 1
      laravel/response.php

+ 1 - 0
laravel/documentation/changes.md

@@ -24,6 +24,7 @@
 - [Added `$hidden` static variable to the base Eloquent model](/docs/database/eloquent#to-array).
 - [Added `sync` method to has\_many\_and\_belongs\_to Eloquent relationship](/docs/database/eloquent#sync-method).
 - [Added `save` method to has\_many Eloquent relationship](/docs/database/eloquent#has-many-save).
+- Migrated to the Symfony HttpFoundation component for core request / response handling.
 - Fixed the passing of strings into the Input::except method.
 - Fixed replacement of optional parameters in URL::transpose method.
 - Improved View performance by only loading contents from file once.

+ 1 - 1
laravel/response.php

@@ -166,7 +166,7 @@ class Response {
 	 */
 	public static function prepare($response)
 	{
-		// We'll need to force the response to be a string before closing
+		// We will need to force the response to be a string before closing
 		// the session since the developer may be utilizing the session
 		// within the view, and we can't age it until rendering.
 		if ( ! $response instanceof Response)