php-duration icon indicating copy to clipboard operation
php-duration copied to clipboard

Calling multiple methods disrupts internal state of the object

Open kminek opened this issue 3 years ago • 0 comments

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

kminek avatar May 10 '21 18:05 kminek