Passed
Push — master ( f0dd71...c56a27 )
by Christoph
11:49 queued 12s
created
lib/private/Template/Base.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -117,8 +117,7 @@  discard block
 block discarded – undo
117 117
 	public function append($key, $value) {
118 118
 		if( array_key_exists( $key, $this->vars )) {
119 119
 			$this->vars[$key][] = $value;
120
-		}
121
-		else{
120
+		} else{
122 121
 			$this->vars[$key] = [ $value ];
123 122
 		}
124 123
 	}
@@ -133,8 +132,7 @@  discard block
 block discarded – undo
133 132
 		$data = $this->fetchPage();
134 133
 		if( $data === false ) {
135 134
 			return false;
136
-		}
137
-		else{
135
+		} else{
138 136
 			print $data;
139 137
 			return true;
140 138
 		}
Please login to merge, or discard this patch.