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