id; } public function getText(): ?string { return $this->text; } public function setText(?string $text): static { $this->text = $text; return $this; } public function getPost(): ?Post { return $this->post; } public function setPost(?Post $post): static { $this->post = $post; return $this; } public function getProfil(): ?Profil { return $this->profil; } public function setProfil(?Profil $profil): static { $this->profil = $profil; return $this; } }