date = $startDate; $this->rows = $rows; } public function getDate(): \DateTime { return $this->date; } /** * @return QuickEntryModel[] */ public function getRows(): array { return $this->rows; } /** * @param QuickEntryModel[] $rows */ public function setRows(array $rows): void { $this->rows = $rows; } }