Passed
Push — master ( 203973...8cf0de )
by Matthias
03:02
created
src/Zepi/Turbo/Request/RequestAbstract.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
         $this->routeParams[] = $param;
194 194
         
195 195
         if ($key != '') {
196
-            $this->routeParams[$key]= $param;
196
+            $this->routeParams[$key] = $param;
197 197
         }
198 198
     }
199 199
     
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
         
256 256
         $delimiter = $this->getRouteDelimiter();
257 257
         if (substr($routePart, 0, strlen($delimiter)) !== $delimiter) {
258
-            $routePart = $delimiter . $routePart;
258
+            $routePart = $delimiter.$routePart;
259 259
         }
260 260
         
261 261
         $posPoint = strrpos($routePart, '.');
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
             $routePart .= $delimiter;
264 264
         }
265 265
         
266
-        return $this->base . $routePart;
266
+        return $this->base.$routePart;
267 267
     }
268 268
     
269 269
     /**
Please login to merge, or discard this patch.