id_comment = $id_comment; $this->comment = $comment; $this->date = $date; } public function getIdComment(): int { return $this->id_comment; } public function getComment(): string { return $this->comment; } public function getDate(): string { return $this->date; } public function setIdComment(int $id_comment): void { $this->id_comment = $id_comment; } public function setComment(string $comment): void { $this->comment = $comment; } public function setDate(string $date): void { $this->date = $date; } }