id; } public function getHash(): ?string { return $this->hash; } public function setHash(string $hash): self { $this->hash = $hash; return $this; } public function getIsEnabled(): ?bool { return $this->isEnabled; } public function setIsEnabled(bool $isEnabled): self { $this->isEnabled = $isEnabled; return $this; } public function getPost(): ?Post { return $this->post; } public function setPost(?Post $post): self { $this->post = $post; return $this; } public function getComment(): ?Comment { return $this->comment; } public function setComment(?Comment $comment): self { $this->comment = $comment; return $this; } }