id; } /** * @return User */ public function getUser() { return $this->user; } /** * @param User $user * * @return UserSetting */ public function setUser(User $user) { $this->user = $user; return $this; } /** * @return string */ public function getName() { return $this->name; } /** * @param string $name * * @return UserSetting */ public function setName($name) { $this->name = $name; return $this; } /** * @return string */ public function getValue() { return $this->value; } /** * @param string $value * * @return UserSetting */ public function setValue($value) { $this->value = $value; return $this; } /** * @return \DateTime */ public function getCreated() { return $this->created; } /** * @param \DateTime $created * * @return UserSetting */ public function setCreated(\DateTime $created) { $this->created = $created; return $this; } /** * @return \DateTime */ public function getUpdated() { return $this->updated; } /** * @param \DateTime $updated * * @return UserSetting */ public function setUpdated(\DateTime $updated) { $this->updated = $updated; return $this; } }