Completed
Push — master ( 125148...6e4e8e )
by Timothy
16:08
created
src/Aviat/Ion/View.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	 *
51 51
 	 * @var boolean
52 52
 	 */
53
-	protected $hasRendered = false;
53
+	protected $hasRendered = FALSE;
54 54
 
55 55
 	/**
56 56
 	 * Constructor
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 	 */
82 82
 	public function __toString()
83 83
 	{
84
-		$this->hasRendered = true;
84
+		$this->hasRendered = TRUE;
85 85
 		return $this->getOutput();
86 86
 	}
87 87
 
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 	 */
127 127
 	public function send()
128 128
 	{
129
-		$this->hasRendered = true;
129
+		$this->hasRendered = TRUE;
130 130
 		$this->output();
131 131
 	}
132 132
 
Please login to merge, or discard this patch.