value = $value; return $this; } /** * Get value * * @return string */ public function getValue() { return $this->value; } /** * Set option * * @param string $option * * @return KimaiPreferences */ public function setOption($option) { $this->option = $option; return $this; } /** * Get option * * @return string */ public function getOption() { return $this->option; } /** * Set userid * * @param integer $userid * * @return KimaiPreferences */ public function setUserid($userid) { $this->userid = $userid; return $this; } /** * Get userid * * @return integer */ public function getUserid() { return $this->userid; } }