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 0bf7a4c commit 2b5b986Copy full SHA for 2b5b986
app/code/Magento/Elasticsearch/Model/Adapter/BatchDataMapper/ProductDataMapper.php
@@ -252,9 +252,14 @@ private function prepareAttributeValues(
252
*/
253
private function prepareMultiselectValues(array $values): array
254
{
255
- return \array_merge(...\array_map(function (string $value) {
256
- return \explode(',', $value);
257
- }, $values));
+ return \array_merge(
+ ...\array_map(
+ function (string $value) {
258
+ return \explode(',', $value);
259
+ },
260
+ $values
261
+ )
262
+ );
263
}
264
265
/**
0 commit comments