Completed
Push — master ( 1620db...79e85c )
by Aske
03:40
created
Classes/MOC/NotFound/ViewHelpers/RequestViewHelper.php 1 patch
Spacing   +2 added lines, -2 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) {
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 			}
147 147
 		}
148 148
 
149
-		$path = $matches['firstUriPart'] . '/' . $path;
149
+		$path = $matches['firstUriPart'].'/'.$path;
150 150
 	}
151 151
 
152 152
 }
Please login to merge, or discard this patch.