Completed
Pull Request — master (#197)
by Valentin
02:24
created
source/Spiral/Http/Request/InputManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
         if (empty($path)) {
162 162
             return '/';
163 163
         } elseif ($path[0] !== '/') {
164
-            return '/' . $path;
164
+            return '/'.$path;
165 165
         }
166 166
 
167 167
         return $path;
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
         $input = clone $this;
393 393
 
394 394
         if ($add) {
395
-            $input->prefix .= '.' . $prefix;
395
+            $input->prefix .= '.'.$prefix;
396 396
             $input->prefix = trim($input->prefix, '.');
397 397
         } else {
398 398
             $input->prefix = $prefix;
Please login to merge, or discard this patch.