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
The error could be avoided by replacing: $parameterformdata = @$data["frameworkparams"];
with $parameterformdata = isset($data["frameworkparams"]) ? $data["frameworkparams"] : [];
if it really could be empty ok, but Null coalescing operator should be used with care.
if you use it use this one $parameterformdata = $data["frameworkparams"] ?? [];
foreach() argument must be of type array|object, null given.
(reported by a tester, I do not have more information, sorry).
The text was updated successfully, but these errors were encountered: