Passed
Push — master ( b8d195...864eb7 )
by Matthias
03:47
created
src/Zepi/Turbo/Response/Response.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
         
229 229
         if ($withOrigin) {
230 230
             $origin = $this->request->getFullRoute();
231
-            $additionalQuery = '_origin=' . base64_encode($origin);
231
+            $additionalQuery = '_origin='.base64_encode($origin);
232 232
             
233 233
             $parts = parse_url($target);
234 234
             
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
             $target = $this->buildUrl($parts);
247 247
         }
248 248
         
249
-        header("Location: " . $target, true, $headerCode);
249
+        header("Location: ".$target, true, $headerCode);
250 250
     }
251 251
     
252 252
     /**
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
             return false;
345 345
         }
346 346
         
347
-        $message = $this->request->getProtocol() . ' ' . $code . ' ' . $codes[$code];
347
+        $message = $this->request->getProtocol().' '.$code.' '.$codes[$code];
348 348
         header($message, true, $code);
349 349
         
350 350
         if ($resetOutput) {
Please login to merge, or discard this patch.