From cfe515bdaf3f8f7b7ab2f9ea4b2d372162a9debe Mon Sep 17 00:00:00 2001 From: Kevin MONDEJAR Date: Wed, 23 Oct 2024 15:14:54 +0200 Subject: [PATCH] Supprimer 'models/commentaryEntity.php' --- models/commentaryEntity.php | 39 ------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 models/commentaryEntity.php diff --git a/models/commentaryEntity.php b/models/commentaryEntity.php deleted file mode 100644 index ccd8f1a..0000000 --- a/models/commentaryEntity.php +++ /dev/null @@ -1,39 +0,0 @@ -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; - } - - -} \ No newline at end of file