active; } public function getId(): ?int { return $this->id; } public function getName(): ?array { return $this->name; } public function setActive(bool $active): self { $this->active = $active; return $this; } public function setName(array $name): self { $this->name = $name; return $this; } }