kevinkhill / php-duration

Convert durations of time between colon-formatted, human-readable, and seconds
MIT License
158 stars 26 forks source link

Calling multiple methods disrupts internal state of the object #26

Open kminek opened 3 years ago

kminek commented 3 years ago

i'm using PHP8

use Khill\Duration\Duration;

$duration = new Duration('7:31');

dump($duration->humanize());  // returns '7m 31s'
dump($duration->toSeconds()); // returns 0.0 instead of 451.0