getName()}"; } public function getUserID() { return $this->attributes['user_id']; } public function getName() { return $this->attributes['user_name']; } public function getPoint() { return $this->attributes['user_point']; } public function setPoint(int $point) { $this->attributes['user_point'] = $point; } public function getLevel() { return $this->attributes['user_level']; } public function setLevel(int $level) { $this->attributes['user_level'] = $level; } }