Browse Source

refactoring the response class.

Taylor Otwell 13 years ago
parent
commit
48120ce403
1 changed files with 3 additions and 12 deletions
  1. 3 12
      system/response.php

+ 3 - 12
system/response.php

@@ -121,10 +121,7 @@ class Response {
 	 */
 	public static function prepare($response)
 	{
-		if ($response instanceof Redirect)
-		{
-			$response = $response->response;
-		}
+		if ($response instanceof Redirect) $response = $response->response;
 
 		return ( ! $response instanceof Response) ? new static($response) : $response;
 	}
@@ -136,15 +133,9 @@ class Response {
 	 */
 	public function send()
 	{
-		if ( ! array_key_exists('Content-Type', $this->headers))
-		{
-			$this->header('Content-Type', 'text/html; charset=utf-8');
-		}
+		if ( ! array_key_exists('Content-Type', $this->headers)) $this->header('Content-Type', 'text/html; charset=utf-8')
 
-		if ( ! headers_sent())
-		{
-			$this->send_headers();
-		}
+		if ( ! headers_sent()) $this->send_headers();
 
 		echo (string) $this->content;
 	}