section; } public function setSection(?SectionInterface $section): self { $this->section = $section; return $this; } public function getCycleNumber(): ?int { return $this->cycleNumber; } public function setCycleNumber(int $cycleNumber): self { $this->cycleNumber = $cycleNumber; return $this; } public function getYear(): ?int { return $this->year; } public function setYear(int $year): self { $this->year = $year; return $this; } public function getCycleType(): ?string { return $this->cycleType; } public function setCycleType(string $cycleType): self { $this->cycleType = $cycleType; return $this; } }