You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kernel::System::Web::Request contains the request data for the current HTTP Request. For some measures of intuitiveness, it is not intuitive that instances of this class are modified during the request. At least the methods SetCookie and SaveFormDraft provide means to modify the ParamObject.
I propose to refactor the code so that the ParamObject becomes immutable.
The text was updated successfully, but these errors were encountered:
Checking again, SetCookie() does not modify the object. LoadFormDraft() does set params in the query object. SaveFormDraft() does not modify the ParamObject, but the FormDraftObject.
Kernel::System::Web::Request
contains the request data for the current HTTP Request. For some measures of intuitiveness, it is not intuitive that instances of this class are modified during the request. At least the methodsSetCookie
andSaveFormDraft
provide means to modify the ParamObject.I propose to refactor the code so that the ParamObject becomes immutable.
The text was updated successfully, but these errors were encountered: