id; } /** * Set userId * * @param string $userId * @return UsersConfig */ public function setUserId($userId) { $this->userId = $userId; return $this; } /** * Get userId * * @return string */ public function getUserId() { return $this->userId; } /** * Set name * * @param string $name * @return UsersConfig */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set value * * @param string $value * @return UsersConfig */ public function setValue($value) { $this->value = $value; return $this; } /** * Get value * * @return string */ public function getValue() { return $this->value; } }