user; } /** * @since 29.0.0 */ public function getApp(): string { return $this->app; } /** * @since 29.0.0 */ public function getFormId(): string { return $this->formId; } /** * @since 29.0.0 */ public function getFieldId(): string { return $this->fieldId; } /** * @since 29.0.0 */ public function setValue(mixed $value): void { $this->value = $value; } /** * @return DeclarativeSettingsValueTypes * @throws Exception * * @since 29.0.0 */ public function getValue(): mixed { if ($this->value === null) { throw new Exception('Value not set'); } return $this->value; } }