We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f268ca4 commit f1fc1bfCopy full SHA for f1fc1bf
src/Util/Timing.php
@@ -64,7 +64,7 @@ public static function printRunTime($force=false)
64
65
if ($time > 60000) {
66
$mins = floor($time / 60000);
67
- $secs = round((($time % 60000) / 1000), 2);
+ $secs = round((fmod($time, 60000) / 1000), 2);
68
$time = $mins.' mins';
69
if ($secs !== 0) {
70
$time .= ", $secs secs";
0 commit comments