Skip to content

Commit 6daf85b

Browse files
fix error: implicit conversion from float to int loses precision (#1664)
1 parent a386de3 commit 6daf85b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

classes/phing/listener/DefaultLogger.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ public static function formatTime($micros)
312312
$minutes,
313313
($minutes === 1 ? " " : "s "),
314314
$seconds - floor($seconds / 60) * 60,
315-
($seconds % 60 === 1 ? "" : "s")
315+
(intval($seconds) % 60 === 1 ? "" : "s")
316316
);
317317
} else {
318318
return sprintf("%0.4f second%s", $seconds, (intval($seconds) % 60 === 1 ? "" : "s"));

0 commit comments

Comments
 (0)