Completed
Push — master ( 8f058a...ace437 )
by
unknown
15s queued 11s
created
src/Form/Type/ChoiceMapper/ProductOptionsMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         $productOptionValues = $productOption->getValues()->toArray();
40 40
         $choices = [];
41 41
 
42
-        array_walk($productOptionValues, function (ProductOptionValueInterface $productOptionValue) use (&$choices): void {
42
+        array_walk($productOptionValues, function(ProductOptionValueInterface $productOptionValue) use (&$choices): void {
43 43
             $value = $productOptionValue->getValue();
44 44
             $choices[$value] = $this->stringFormatter->formatToLowercaseWithoutSpaces($value);
45 45
         });
Please login to merge, or discard this patch.
src/PropertyBuilder/ProductNameBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     public function consumeEvent(TransformEvent $event): void
40 40
     {
41 41
         $this->buildProperty($event, ProductInterface::class,
42
-            function (ProductInterface $product, Document $document): void {
42
+            function(ProductInterface $product, Document $document): void {
43 43
                 /** @var ProductTranslationInterface $productTranslation */
44 44
                 foreach ($product->getTranslations() as $productTranslation) {
45 45
                     $propertyName = $this->productNameNameResolver->resolvePropertyName($productTranslation->getLocale());
Please login to merge, or discard this patch.
src/PropertyBuilder/OptionBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     public function consumeEvent(TransformEvent $event): void
47 47
     {
48 48
         $this->buildProperty($event, ProductInterface::class,
49
-            function (ProductInterface $product, Document $document): void {
49
+            function(ProductInterface $product, Document $document): void {
50 50
                 $this->resolveProductOptions($product, $document);
51 51
             });
52 52
     }
Please login to merge, or discard this patch.
src/PropertyBuilder/AttributeBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     public function consumeEvent(TransformEvent $event): void
49 49
     {
50 50
         $this->buildProperty($event, ProductInterface::class,
51
-            function (ProductInterface $product, Document $document): void {
51
+            function(ProductInterface $product, Document $document): void {
52 52
                 $this->resolveProductAttributes($product, $document);
53 53
             });
54 54
     }
Please login to merge, or discard this patch.
src/PropertyBuilder/ProductTaxonsBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     public function consumeEvent(TransformEvent $event): void
46 46
     {
47 47
         $this->buildProperty($event, ProductInterface::class,
48
-            function (ProductInterface $product, Document $document): void {
48
+            function(ProductInterface $product, Document $document): void {
49 49
                 $taxons = $this->productTaxonsMapper->mapToUniqueCodes($product);
50 50
 
51 51
                 $document->set($this->taxonsProperty, $taxons);
Please login to merge, or discard this patch.
src/PropertyBuilder/ChannelsBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     public function consumeEvent(TransformEvent $event): void
38 38
     {
39 39
         $this->buildProperty($event, ProductInterface::class,
40
-            function (ProductInterface $product, Document $document): void {
40
+            function(ProductInterface $product, Document $document): void {
41 41
                 $channels = [];
42 42
 
43 43
                 foreach ($product->getChannels() as $channel) {
Please login to merge, or discard this patch.
src/PropertyBuilder/ProductCreatedAtPropertyBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     public function consumeEvent(TransformEvent $event): void
38 38
     {
39 39
         $this->buildProperty($event, ProductInterface::class,
40
-            function (ProductInterface $product, Document $document): void {
40
+            function(ProductInterface $product, Document $document): void {
41 41
                 $createdAt = (int) $product->getCreatedAt()->format('U');
42 42
 
43 43
                 $document->set($this->createdAtProperty, $createdAt);
Please login to merge, or discard this patch.
src/PropertyBuilder/SoldUnitsPropertyBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     public function consumeEvent(TransformEvent $event): void
46 46
     {
47 47
         $this->buildProperty($event, ProductInterface::class,
48
-            function (ProductInterface $product, Document $document): void {
48
+            function(ProductInterface $product, Document $document): void {
49 49
                 $soldUnits = 0;
50 50
 
51 51
                 foreach ($product->getVariants() as $productVariant) {
Please login to merge, or discard this patch.
src/PropertyBuilder/ChannelPricingBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     public function consumeEvent(TransformEvent $event): void
40 40
     {
41 41
         $this->buildProperty($event, ProductInterface::class,
42
-            function (ProductInterface $product, Document $document): void {
42
+            function(ProductInterface $product, Document $document): void {
43 43
                 if (0 === $product->getVariants()->count()) {
44 44
                     return;
45 45
                 }
Please login to merge, or discard this patch.