id; } /** * Set fullName * * @param string $fullname * @return Profile */ public function setfullname($fullname) { $this->fullname = $fullname; return $this; } /** * Get fullName * * @return string */ public function getFullName() { return $this->fullname; } /** * Set userName * * @param string $username * @return Profile */ public function setUserName($username) { $this->username = $userName; return $this; } /** * Get userName * * @return string */ public function getUserName() { return $this->username; } /** * Set currentWeight * * @param float $currentWeight * @return Profile */ public function setCurrentWeight($currentWeight) { $this->currentweight = $currentWeight; return $this; } /** * Get currentWeight * * @return float */ public function getCurrentWeight() { return $this->currentweight; } }