id = $id; $this->username = $username; $this->displayname = $displayname; } public function getId() { return $this->id; } public function getUsername() { return $this->username; } public function getName() { return $this->displayname; } public function getProfilePicture() { return $this->profilePicture; } public function setProfilePicture($profilePicture) { $this->profilePicture = $profilePicture; } }