name; } public function setName(string $name): self { $this->name = $name; return $this; } public function getSlug(): ?string { return $this->slug; } protected function setSlug(string $slug): self { $this->slug = $slug; return $this; } }