@@ -176,13 +176,13 @@ |
||
| 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); |
@@ -26,9 +26,9 @@ |
||
| 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 | /** |