@@ -59,7 +59,7 @@ |
||
59 | 59 | $attributeValues = $this->productAttributeValueRepository->getUniqueAttributeValues($productAttribute); |
60 | 60 | |
61 | 61 | $choices = []; |
62 | - array_walk($attributeValues, function ($productAttributeValue) use (&$choices, $productAttribute): void { |
|
62 | + array_walk($attributeValues, function($productAttributeValue) use (&$choices, $productAttribute): void { |
|
63 | 63 | $value = $productAttributeValue['value']; |
64 | 64 | |
65 | 65 | $configuration = $productAttribute->getConfiguration(); |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | return $queryBuilder |
36 | 36 | ->join('o.subject', 'p', 'WITH', 'p.enabled = 1') |
37 | - ->select('o.localeCode, o.'.$storageType.' as value') |
|
37 | + ->select('o.localeCode, o.' . $storageType . ' as value') |
|
38 | 38 | ->where('o.attribute = :attribute') |
39 | 39 | ->groupBy('o.' . $storageType) |
40 | 40 | ->addGroupBy('o.localeCode') |