fromDate = $fromDate ?? null; $this->toDate = $toDate ?? null; $this->province = $province ?? null; } public function sheets(): array { return [ 0 => new Provinces($this->fromDate, $this->toDate, $this->province), 1 => new Cities($this->fromDate, $this->toDate, $this->province) ]; } }