Completed
Pull Request — master (#19)
by
unknown
19:27
created
Classes/ViewHelpers/RequestViewHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
             }
135 135
         }
136 136
 
137
-        $path = $matches['firstUriPart'] . '/' . $path;
137
+        $path = $matches['firstUriPart'].'/'.$path;
138 138
     }
139 139
 
140 140
     /**
@@ -147,6 +147,6 @@  discard block
 block discarded – undo
147 147
         foreach ($dimensionPresets as $dimensionName => $dimensionPreset) {
148 148
             $defaultDimensionPresetUriSegments[] = $dimensionPreset['presets'][$dimensionPreset['defaultPreset']]['uriSegment'];
149 149
         }
150
-        $path = implode('_', $defaultDimensionPresetUriSegments) . '/' . $path;
150
+        $path = implode('_', $defaultDimensionPresetUriSegments).'/'.$path;
151 151
     }
152 152
 }
Please login to merge, or discard this patch.