Passed
Push — master ( 9edaa9...35a131 )
by Mikołaj
04:21
created
src/PropertyValueResolver/AttributeValueResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 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\PropertyValueResolver;
14 14
 
Please login to merge, or discard this patch.
src/PropertyValueResolver/AttributeValueResolverInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 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\PropertyValueResolver;
14 14
 
Please login to merge, or discard this patch.
src/Form/Type/ProductAttributesFilterType.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
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
             $name = $this->attributeNameResolver->resolvePropertyName($productAttribute->getCode());
73 73
             $attributeValues = $this->productAttributeValueRepository->findBy(['attribute' => $productAttribute]);
74 74
             $choices = [];
75
-            array_walk($attributeValues, function (?ProductAttributeValueInterface $productAttributeValue) use (&$choices) {
75
+            array_walk($attributeValues, function(?ProductAttributeValueInterface $productAttributeValue) use (&$choices) {
76 76
                 $choices[$productAttributeValue->getValue()] = $this->attributeValueResolver->resolve($productAttributeValue);
77 77
             });
78 78
 
Please login to merge, or discard this patch.