Passed
Push — master ( b04703...13c66f )
by Mikołaj
05:38 queued 48s
created
src/Form/Type/ChoiceMapper/ProductAttributesMapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -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
             $product = $productAttributeValue->getProduct();
62 62
 
63 63
             if (!$product->isEnabled()) {
Please login to merge, or discard this patch.