date = $date; $this->start = $start; $this->end = $end; $this->index = $index; $this->room = $rooms; } public function getDate(): string { return $this->date; } public function getStart(): Carbon { return $this->start; } public function getEnd(): Carbon { return $this->end; } public function getIndex(): int { return $this->index; } /** * @return Room[] */ public function getRoom(): array { return $this->room; } }