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