start = $start; $this->end = $end; } /** * Get the duration of the time range in seconds. * * @return float|int */ public function getDuration() { return $this->end - $this->start; } }