Completed
Push — master ( eb1d12...837f9d )
by Marcel
02:14
created
src/Format/Duration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -176,13 +176,13 @@
 block discarded – undo
176 176
                 $stepValue = floor($seconds / $minValue);
177 177
                 if ($stepValue > 0) {
178 178
                     $suffix = Quantity::format($suffix, $stepValue);
179
-                    $parts[] = $stepValue . $suffix;
179
+                    $parts[] = $stepValue.$suffix;
180 180
                     $seconds -= $stepValue * $minValue;
181 181
                 }
182 182
             }
183 183
         }
184 184
         if (count($parts) === 0) {
185
-            $parts[] = $seconds . Quantity::format($steps[self::SECOND], $seconds);
185
+            $parts[] = $seconds.Quantity::format($steps[self::SECOND], $seconds);
186 186
         }
187 187
         if ($this->limit > 0) {
188 188
             $parts = array_slice($parts, 0, $this->limit);
Please login to merge, or discard this patch.
src/Path.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,9 +26,9 @@
 block discarded – undo
26 26
         $path = implode(DIRECTORY_SEPARATOR, $paths);
27 27
         $path = self::localize($path);
28 28
         $quotedSeparator = preg_quote(DIRECTORY_SEPARATOR);
29
-        $pattern = '#' . $quotedSeparator . '+#';
29
+        $pattern = '#'.$quotedSeparator.'+#';
30 30
         $path = preg_replace($pattern, $quotedSeparator, $path);
31
-        return $scheme . $path;
31
+        return $scheme.$path;
32 32
     }
33 33
 
34 34
     /**
Please login to merge, or discard this patch.