From: Vincent Vanwaelscappel Date: Fri, 8 Oct 2021 13:10:03 +0000 (+0200) Subject: wip #4765 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=24e28869aa4e291b9d6f7db6f1b1c6fe82e51d7a;p=cubist_socialite.git wip #4765 --- 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