setName($_name); } public function getId(): ?int { return $this->id; } public function getName(): ?string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function filleArray(){ $reponse['id'] = $this->getId(); $reponse['name'] = $this->getName(); return $reponse; } }