Passed
Push — master ( e3f277...8dead3 )
by Mikołaj
04:01
created
src/Form/Type/ShopProductsFilterType.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;
14 14
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
         /** @var ProductOptionInterface $productOption */
74 74
         foreach ($this->productOptionsContext->getOptions() as $productOption) {
75 75
             $name = $this->optionPropertyPrefix . '_' . $productOption->getCode();
76
-            $optionValues = array_map(function (ProductOptionValueInterface $productOptionValue): ?string {
76
+            $optionValues = array_map(function(ProductOptionValueInterface $productOptionValue): ?string {
77 77
                 return $productOptionValue->getValue();
78 78
             }, $productOption->getValues()->toArray());
79 79
 
Please login to merge, or discard this patch.