Browse Source

Added __toString method to Response.

Taylor Otwell 13 years ago
parent
commit
924ecf879c
1 changed files with 8 additions and 0 deletions
  1. 8 0
      system/response.php

+ 8 - 0
system/response.php

@@ -177,4 +177,12 @@ class Response {
 		return $this->status == 301 or $this->status == 302;
 		return $this->status == 301 or $this->status == 302;
 	}
 	}
 
 
+	/**
+	 * Get the parsed content of the Response.
+	 */
+	public function __toString()
+	{
+		return (string) $this->content;
+	}
+
 }
 }