From 96fa394534d0912dea3a72da2cac26f1c54024f6 Mon Sep 17 00:00:00 2001 From: Kevin MONDEJAR Date: Wed, 23 Oct 2024 15:15:12 +0200 Subject: [PATCH] Supprimer 'models/sourceEntity.php' --- models/sourceEntity.php | 47 ----------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 models/sourceEntity.php diff --git a/models/sourceEntity.php b/models/sourceEntity.php deleted file mode 100644 index 5a983d5..0000000 --- a/models/sourceEntity.php +++ /dev/null @@ -1,47 +0,0 @@ - id_source = $id_source ; - $this -> title = $title ; - $this -> date = $date; - } - - public function getIdSource() : int - { - return $this -> id_source ; - } - - public function getTitle() : string - { - return $this -> title ; - } - - public function getDate() : string - { - return $this -> date ; - } - - public function setIdSource(int $id_source) : void - { - $this -> id_source = $id_source ; - } - - public function setTitle(string $title): void{ - $this -> title = $title ; - } - - public function setDate(string $date) : void - { - $this -> date = $date ; - } - -} \ No newline at end of file