Trim comment bloat on Response class.
This commit is contained in:
parent
37927ee44b
commit
e334fd80b6
|
@ -109,10 +109,8 @@ public static function make($content, $status = 200)
|
||||||
*/
|
*/
|
||||||
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;
|
||||||
|
|
Loading…
Reference in New Issue