name; } public function getName(): ?string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function getThematic(): ?ThematicInterface { return $this->thematic; } public function setThematic(?ThematicInterface $thematic): self { $this->thematic = $thematic; return $this; } }