From 9571510a83d88e873da0d5487c8475b841f285a7 Mon Sep 17 00:00:00 2001 From: "victor.soulier" Date: Fri, 17 Nov 2023 09:54:23 +0100 Subject: [PATCH] ADD : class joueur --- project/src/model/metier/Joueur.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 project/src/model/metier/Joueur.php diff --git a/project/src/model/metier/Joueur.php b/project/src/model/metier/Joueur.php new file mode 100644 index 0000000..57f67c1 --- /dev/null +++ b/project/src/model/metier/Joueur.php @@ -0,0 +1,24 @@ +id=$id; + $this->pseudo=$pseudo; + } + + public function getId(): int + { + return $this->id; + } + + public function getPseudo(): String + { + return $this->pseudo; + } +} \ No newline at end of file