|
@@ -8,7 +8,7 @@ discard block |
|
|
block discarded – undo |
|
8
|
8
|
* an email on [email protected]. |
|
9
|
9
|
*/ |
|
10
|
10
|
|
|
11
|
|
-declare(strict_types=1); |
|
|
11
|
+declare(strict_types = 1); |
|
12
|
12
|
|
|
13
|
13
|
namespace BitBag\SyliusElasticsearchPlugin\Form\Type\ChoiceMapper; |
|
14
|
14
|
|
|
@@ -57,7 +57,7 @@ discard block |
|
|
block discarded – undo |
|
57
|
57
|
{ |
|
58
|
58
|
$attributeValues = $this->productAttributeValueRepository->findBy(['attribute' => $productAttribute]); |
|
59
|
59
|
$choices = []; |
|
60
|
|
- array_walk($attributeValues, function (ProductAttributeValueInterface $productAttributeValue) use (&$choices): void { |
|
|
60
|
+ array_walk($attributeValues, function(ProductAttributeValueInterface $productAttributeValue) use (&$choices): void { |
|
61
|
61
|
$value = $productAttributeValue->getValue(); |
|
62
|
62
|
$configuration = $productAttributeValue->getAttribute()->getConfiguration(); |
|
63
|
63
|
$product = $productAttributeValue->getProduct(); |
Please login to merge, or discard this patch.