Completed
Push — master ( 275b0e...27ac7e )
by Timothy
02:35
created
src/Aviat/Ion/View/HttpView.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 	 */
63 63
 	protected function output()
64 64
 	{
65
-		$content =& $this->response->content;
65
+		$content = & $this->response->content;
66 66
 		$content->set($this->output);
67 67
 		$content->setType($this->contentType);
68 68
 		$content->setCharset('utf-8');
Please login to merge, or discard this patch.
Braces   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
 	 * @param int $code
40 40
 	 * @return HttpView
41 41
 	 */
42
-	public function setStatusCode($code)
43
-	{
42
+	public function setStatusCode($code)
43
+	{
44 44
 		$this->response->status->setCode($code);
45 45
 		$this->response->status->setVersion(1.1);
46 46
 		return $this;
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
 	/**
50 50
 	 * Send output to client
51 51
 	 */
52
-	public function send()
53
-	{
52
+	public function send()
53
+	{
54 54
 		$this->hasRendered = TRUE;
55 55
 		$this->output();
56 56
 	}
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
 	 *
61 61
 	 * @return void
62 62
 	 */
63
-	protected function output()
64
-	{
63
+	protected function output()
64
+	{
65 65
 		$content =& $this->response->content;
66 66
 		$content->set($this->output);
67 67
 		$content->setType($this->contentType);
Please login to merge, or discard this patch.