userId = $id; $this->username = $username; $this->email = $email; } public function getUserId() { return $this->userId; } public function setUserID($userId) { $this->userId = $userId; } public function getUsername() { return $this->username; } public function setUsername($username) { $this->username = $username; } public function getEmail() { return $this->email; } public function setEmail($email) { $this->email = $email; } }