Completed
Pull Request — master (#10)
by
unknown
19:34
created
Classes/MOC/NotFound/ViewHelpers/RequestViewHelper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
157 157
 			}
158 158
 		}
159 159
 
160
-		$path = $matches['firstUriPart'] . '/' . $path;
160
+		$path = $matches['firstUriPart'].'/'.$path;
161 161
 	}
162 162
 
163 163
 }
Please login to merge, or discard this patch.