Completed
Pull Request — master (#81)
by
unknown
03:23
created
Zewa/View.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 
135 135
             $this->view = $return = $this->process($view);
136 136
 
137
-            if(! is_null($this->layout) ) {
137
+            if (!is_null($this->layout)) {
138 138
                 $return = $this->process($this->layout);
139 139
             }
140 140
 
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                 $this->view = $this->process($this->view);
145 145
             }
146 146
 
147
-            if (! is_null($this->layout)) {
147
+            if (!is_null($this->layout)) {
148 148
                 return $this->process($this->layout);
149 149
             } else {
150 150
                 return $this->view;
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
         }
275 275
 
276 276
         foreach ($this->queuedCSS as $sheet) {
277
-            $string .= '<link rel="stylesheet" href="' . $sheet .'">' . "\r\n";
277
+            $string .= '<link rel="stylesheet" href="' . $sheet . '">' . "\r\n";
278 278
         }
279 279
 
280 280
         return $string;
Please login to merge, or discard this patch.