Failed Conditions
Push — master ( 494e02...0ec8a9 )
by mark
68:47 queued 24:21
created
src/Spryker/Zed/ShipmentGui/Communication/Form/Item/ItemFormType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     {
56 56
         $selectedItems = $options[ShipmentGroupFormType::FIELD_SHIPMENT_SELECTED_ITEMS];
57 57
 
58
-        $builder->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) use ($selectedItems) {
58
+        $builder->addEventListener(FormEvents::PRE_SET_DATA, function(FormEvent $event) use ($selectedItems) {
59 59
             $item = $event->getData();
60 60
             $form = $event->getForm();
61 61
 
Please login to merge, or discard this patch.
src/Spryker/Zed/ProductOption/Persistence/ProductOptionQueryContainer.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -417,7 +417,7 @@
 block discarded – undo
417 417
                                 ->filterByIso2Code($countryIso2Code)
418 418
                             ->endUse()
419 419
                             ->_or()
420
-                               ->filterByName(TaxConstants::TAX_EXEMPT_PLACEHOLDER)
420
+                                ->filterByName(TaxConstants::TAX_EXEMPT_PLACEHOLDER)
421 421
                         ->endUse()
422 422
                     ->endUse()
423 423
                     ->withColumn(SpyTaxSetTableMap::COL_NAME)
Please login to merge, or discard this patch.
Business/PriceProductSchedule/Creator/PriceProductScheduleCreator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
         $priceProductScheduleTransfer = $this
71 71
             ->expandPriceProductScheduleTransferWithPriceProductScheduleList($priceProductScheduleTransfer);
72 72
 
73
-        return $this->getTransactionHandler()->handleTransaction(function () use ($priceProductScheduleTransfer): PriceProductScheduleResponseTransfer {
73
+        return $this->getTransactionHandler()->handleTransaction(function() use ($priceProductScheduleTransfer): PriceProductScheduleResponseTransfer {
74 74
             return $this->executeCreateLogicTransaction($priceProductScheduleTransfer);
75 75
         });
76 76
     }
Please login to merge, or discard this patch.
Business/PriceProductSchedule/Remover/PriceProductScheduleRemover.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
             return;
71 71
         }
72 72
 
73
-        $this->getTransactionHandler()->handleTransaction(function () use ($priceProductScheduleTransfer): void {
73
+        $this->getTransactionHandler()->handleTransaction(function() use ($priceProductScheduleTransfer): void {
74 74
             $this->executeRemoveLogicTransaction($priceProductScheduleTransfer);
75 75
         });
76 76
     }
Please login to merge, or discard this patch.
Business/PriceProductSchedule/PriceProductScheduleDisabler.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         $productSchedulePricesForDisable = $this->priceProductScheduleRepository->findPriceProductSchedulesToDisable();
79 79
 
80 80
         foreach ($productSchedulePricesForDisable as $priceProductScheduleTransfer) {
81
-            $this->getTransactionHandler()->handleTransaction(function () use ($priceProductScheduleTransfer): void {
81
+            $this->getTransactionHandler()->handleTransaction(function() use ($priceProductScheduleTransfer): void {
82 82
                 $this->executeExitLogicTransaction($priceProductScheduleTransfer);
83 83
             });
84 84
         }
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
             ->findPriceProductSchedulesToDisableByIdProductAbstract($idProductAbstract);
96 96
 
97 97
         foreach ($productSchedulePricesForDisable as $priceProductScheduleTransfer) {
98
-            $this->getTransactionHandler()->handleTransaction(function () use ($priceProductScheduleTransfer): void {
98
+            $this->getTransactionHandler()->handleTransaction(function() use ($priceProductScheduleTransfer): void {
99 99
                 $this->executeExitLogicTransaction($priceProductScheduleTransfer);
100 100
             });
101 101
         }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
             ->findPriceProductSchedulesToDisableByIdProductConcrete($idProductConcrete);
113 113
 
114 114
         foreach ($productSchedulePricesForDisable as $priceProductScheduleTransfer) {
115
-            $this->getTransactionHandler()->handleTransaction(function () use ($priceProductScheduleTransfer): void {
115
+            $this->getTransactionHandler()->handleTransaction(function() use ($priceProductScheduleTransfer): void {
116 116
                 $this->executeExitLogicTransaction($priceProductScheduleTransfer);
117 117
             });
118 118
         }
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
             ->findSimilarPriceProductSchedulesToDisable($priceProductScheduleTransfer);
131 131
 
132 132
         foreach ($productSchedulePricesForDisable as $priceProductScheduleTransfer) {
133
-            $this->getTransactionHandler()->handleTransaction(function () use ($priceProductScheduleTransfer): void {
133
+            $this->getTransactionHandler()->handleTransaction(function() use ($priceProductScheduleTransfer): void {
134 134
                 $this->executeExitLogicTransaction($priceProductScheduleTransfer);
135 135
             });
136 136
         }
Please login to merge, or discard this patch.
Business/PriceProductSchedule/Updater/PriceProductScheduleUpdater.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      */
50 50
     public function updateAndApplyPriceProductSchedule(PriceProductScheduleTransfer $priceProductScheduleTransfer): PriceProductScheduleResponseTransfer
51 51
     {
52
-        return $this->getTransactionHandler()->handleTransaction(function () use ($priceProductScheduleTransfer): PriceProductScheduleResponseTransfer {
52
+        return $this->getTransactionHandler()->handleTransaction(function() use ($priceProductScheduleTransfer): PriceProductScheduleResponseTransfer {
53 53
             return $this->executeUpdateAndApplyLogicTransaction($priceProductScheduleTransfer);
54 54
         });
55 55
     }
Please login to merge, or discard this patch.
PriceProductSchedule/Applier/AbstractProductPriceProductScheduleApplier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
      */
64 64
     public function applyScheduledPrices(PriceProductScheduleTransfer $priceProductScheduleTransfer): void
65 65
     {
66
-        $this->getTransactionHandler()->handleTransaction(function () use ($priceProductScheduleTransfer) {
66
+        $this->getTransactionHandler()->handleTransaction(function() use ($priceProductScheduleTransfer) {
67 67
             $this->executeApplyScheduledPrices($priceProductScheduleTransfer);
68 68
         });
69 69
     }
Please login to merge, or discard this patch.
Executor/PriceProductScheduleApplyTransactionExecutor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     public function execute(array $priceProductScheduleForEnable): void
58 58
     {
59 59
         foreach ($priceProductScheduleForEnable as $priceProductScheduleTransfer) {
60
-            $this->getTransactionHandler()->handleTransaction(function () use ($priceProductScheduleTransfer): void {
60
+            $this->getTransactionHandler()->handleTransaction(function() use ($priceProductScheduleTransfer): void {
61 61
                 $this->executeApplyScheduledPrices($priceProductScheduleTransfer);
62 62
             });
63 63
         }
Please login to merge, or discard this patch.
Customer/src/Spryker/Service/Customer/CustomerDependencyProvider.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
      */
38 38
     protected function addCustomerService(Container $container): Container
39 39
     {
40
-        $container->set(static::SERVICE_UTIL_ENCODING, function (Container $container) {
40
+        $container->set(static::SERVICE_UTIL_ENCODING, function(Container $container) {
41 41
             return new CustomerToUtilEncodingServiceBridge($container->getLocator()->utilEncoding()->service());
42 42
         });
43 43
 
Please login to merge, or discard this patch.