From f3855559b387de7cf5249aad7c04f411be6e5a77 Mon Sep 17 00:00:00 2001 From: Antoine JOURDAIN Date: Wed, 25 Oct 2023 09:23:38 +0200 Subject: [PATCH] Suppression doublon --- Project/php/User.php | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 Project/php/User.php diff --git a/Project/php/User.php b/Project/php/User.php deleted file mode 100644 index d081eba..0000000 --- a/Project/php/User.php +++ /dev/null @@ -1,37 +0,0 @@ -id = $id; - $this->mail = $mail; - $this->nom = $nom; - $this->prenom = $prenom; - } - - protected function changeMail(String $newMail){ - $this->mail = $newMail; - } - - protected function changeNom(String $newNom){ - $this->nom = $newNom; - } - - protected function changePrenom(String $newPrenom){ - $this->prenom = $newPrenom; - } -} \ No newline at end of file