Completed
Pull Request — master (#19)
by
unknown
04:08
created
Classes/ViewHelpers/RequestViewHelper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
         }
124 124
         $response = new ActionResponse();
125 125
 
126
-        $this->securityContext->withoutAuthorizationChecks(function () use ($request, $response) {
126
+        $this->securityContext->withoutAuthorizationChecks(function() use ($request, $response) {
127 127
             $this->dispatcher->dispatch($request, $response);
128 128
         });
129 129
 
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
             }
179 179
         }
180 180
 
181
-        $path = $matches['firstUriPart'] . '/' . $path;
181
+        $path = $matches['firstUriPart'].'/'.$path;
182 182
     }
183 183
 
184 184
     /**
@@ -191,6 +191,6 @@  discard block
 block discarded – undo
191 191
         foreach ($dimensionPresets as $dimensionName => $dimensionPreset) {
192 192
             $defaultDimensionPresetUriSegments[] = $dimensionPreset['presets'][$dimensionPreset['defaultPreset']]['uriSegment'];
193 193
         }
194
-        $path = implode('_', $defaultDimensionPresetUriSegments) . '/' . $path;
194
+        $path = implode('_', $defaultDimensionPresetUriSegments).'/'.$path;
195 195
     }
196 196
 }
Please login to merge, or discard this patch.