@@ -193,7 +193,7 @@ discard block |
||
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 |
||
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 |
||
263 | 263 | $routePart .= $delimiter; |
264 | 264 | } |
265 | 265 | |
266 | - return $this->base . $routePart; |
|
266 | + return $this->base.$routePart; |
|
267 | 267 | } |
268 | 268 | |
269 | 269 | /** |