We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef0ffcd commit fa1fc1fCopy full SHA for fa1fc1f
app/code/Magento/WebapiAsync/Controller/Rest/Asynchronous/InputParamsResolver.php
@@ -113,12 +113,13 @@ public function resolve()
113
114
$this->requestValidator->validate();
115
$webapiResolvedParams = [];
116
+ $inputData = $this->getInputData();
117
$route = $this->getRoute();
118
$routeServiceClass = $route->getServiceClass();
119
$routeServiceMethod = $route->getServiceMethod();
120
$this->inputArraySizeLimitValue->set($route->getInputArraySizeLimit());
121
- foreach ($this->getInputData() as $key => $singleEntityParams) {
122
+ foreach ($inputData as $key => $singleEntityParams) {
123
$webapiResolvedParams[$key] = $this->resolveBulkItemParams(
124
$singleEntityParams,
125
$routeServiceClass,
0 commit comments