Commit e334fd80 authored by Taylor Otwell's avatar Taylor Otwell

Trim comment bloat on Response class.

parent 37927ee4
...@@ -109,10 +109,8 @@ class Response { ...@@ -109,10 +109,8 @@ class Response {
*/ */
public static function prepare($response) public static function prepare($response)
{ {
// -------------------------------------------------------------- // If the response is a Redirect instance, grab the Response. The Redirect class
// If the response is a Redirect instance, grab the Response. // manages a Response instance internally.
// The Redirect class manages a Response instance internally.
// --------------------------------------------------------------
if ($response instanceof Redirect) if ($response instanceof Redirect)
{ {
$response = $response->response; $response = $response->response;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment