seconds = $seconds; } /** * Format the duration in human-readable form. * * @return string In the format of: 2 hours, 14 minutes, 9 seconds */ public function format(): string { return human_readable_duration( gmdate( 'H:i:s', (int) $this->seconds ) ); } }