@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | /** @var RequestHandler $activeRequestHandler */ |
| 80 | 80 | $activeRequestHandler = $this->bootstrap->getActiveRequestHandler(); |
| 81 | 81 | $parentHttpRequest = $activeRequestHandler->getHttpRequest(); |
| 82 | - $uri = rtrim($parentHttpRequest->getBaseUri(), '/') . '/' . $path; |
|
| 82 | + $uri = rtrim($parentHttpRequest->getBaseUri(), '/').'/'.$path; |
|
| 83 | 83 | $httpRequest = Request::create(new Uri($uri)); |
| 84 | 84 | $matchingRoute = $this->router->route($httpRequest); |
| 85 | 85 | if (!$matchingRoute) { |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | $pathDefaultDimensionsPrefix = implode('_', $dimensionValues); |
| 145 | 145 | |
| 146 | 146 | // Add default dimensions in front of the path |
| 147 | - $path = $pathDefaultDimensionsPrefix . '/' . $path; |
|
| 147 | + $path = $pathDefaultDimensionsPrefix.'/'.$path; |
|
| 148 | 148 | |
| 149 | 149 | return; |
| 150 | 150 | } |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | } |
| 158 | 158 | } |
| 159 | 159 | |
| 160 | - $path = $matches['firstUriPart'] . '/' . $path; |
|
| 160 | + $path = $matches['firstUriPart'].'/'.$path; |
|
| 161 | 161 | } |
| 162 | 162 | |
| 163 | 163 | } |