user = $user; $this->feature = $feature; $this->value = $value; $this->oldValue = $oldValue; } /** * @return IUser * @since 18.0.0 */ public function getUser(): IUser { return $this->user; } /** * @return string * @since 18.0.0 */ public function getFeature(): string { return $this->feature; } /** * @return mixed * @since 18.0.0 */ public function getValue() { return $this->value; } /** * @return mixed * @since 18.0.0 */ public function getOldValue() { return $this->oldValue; } }