data = $data; $this->year1 = $year1; $this->year2 = $year2; $this->end_date = $end_date; } /** * @return array */ public function sheets(): array { $sheets = []; $sheets[] = new CompoundCurrentSheet($this->data, $this->year1, $this->year2, $this->end_date); return $sheets; } }