You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed, while using the ProgressBar class, the elapsed time correctly counting seconds, switching to "1 min" then a second later jumping up to "2 mins". I've narrowed the problem down to the Helper::formatTime method:
returnceil($secs / $format[2]).''.$format[1];
shouldn't it be using floor?
On a second thought, no it shouldn't. using floor will result in strings like "1 mins".