@@ -127,11 +127,11 @@ |
||
127 | 127 | foreach (self::TIMES as $unit => $value) { |
128 | 128 | if ($ms >= $value) { |
129 | 129 | $time = floor($ms / $value * 100.0) / 100.0; |
130 | - return $time . ' ' . ($time == 1 ? $unit : $unit . 's'); |
|
130 | + return $time.' '.($time == 1 ? $unit : $unit.'s'); |
|
131 | 131 | } |
132 | 132 | } |
133 | 133 | |
134 | - return $ms . ' ms'; |
|
134 | + return $ms.' ms'; |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | /** |