id = $id; $this->num = $num; $this->year = $year; $this->sector = $sector; } /** * @return int */ public function getId(): int { return $this->id; } /** * @return int */ public function getNum(): int { return $this->num; } /** * @return int */ public function getYear(): int { return $this->year; } /** * @return string */ public function getSector(): string { return $this->sector; } }