From 24e28869aa4e291b9d6f7db6f1b1c6fe82e51d7a Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Fri, 8 Oct 2021 15:10:03 +0200 Subject: [PATCH] wip #4765 --- src/User.php | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 src/User.php diff --git a/src/User.php b/src/User.php new file mode 100644 index 0000000..8469681 --- /dev/null +++ b/src/User.php @@ -0,0 +1,98 @@ +id; + } + + /** + * @param mixed $id + */ + public function setId($id): void + { + $this->id = $id; + } + + /** + * @return mixed + */ + public function getNickname() + { + return $this->nickname; + } + + /** + * @param mixed $nickname + */ + public function setNickname($nickname): void + { + $this->nickname = $nickname; + } + + /** + * @return mixed + */ + public function getName() + { + return $this->name; + } + + /** + * @param mixed $name + */ + public function setName($name): void + { + $this->name = $name; + } + + /** + * @return mixed + */ + public function getAvatar() + { + return $this->avatar; + } + + /** + * @param mixed $avatar + */ + public function setAvatar($avatar): void + { + $this->avatar = $avatar; + } + + /** + * @return mixed + */ + public function getEmail() + { + return $this->email; + } + + /** + * @param mixed $email + */ + public function setEmail($email): void + { + $this->email = $email; + } +} \ No newline at end of file -- 2.39.5