From 17083dfbc806d7def06079bfd446f040c3d5546f Mon Sep 17 00:00:00 2001 From: maxime point Date: Mon, 13 Nov 2023 14:28:44 +0100 Subject: [PATCH] =?UTF-8?q?:construction:=20ajout=20classe=20m=C3=A9tier?= =?UTF-8?q?=20admin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fluxRSS/metier/Admin.php | 41 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 fluxRSS/metier/Admin.php diff --git a/fluxRSS/metier/Admin.php b/fluxRSS/metier/Admin.php new file mode 100644 index 0000000..c93d108 --- /dev/null +++ b/fluxRSS/metier/Admin.php @@ -0,0 +1,41 @@ +username; + } + + /** + * @param string $username + */ + public function setUsername(string $username): void + { + $this->username = $username; + } + + /** + * @return string + */ + public function getMail(): string + { + return $this->mail; + } + + /** + * @param string $mail + */ + public function setMail(string $mail): void + { + $this->mail = $mail; + } +} \ No newline at end of file