Passed
Push — master ( e0cd82...d9403f )
by
unknown
30:43
created
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.
PriceProductSchedule/Applier/ConcreteProductPriceProductScheduleApplier.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.
Zed/ZedRequest/Communication/Plugin/GatewayServiceProviderPlugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      */
53 53
     public function register(Application $app)
54 54
     {
55
-        $app->extend('dispatcher', function (EventDispatcherInterface $eventDispatcher) {
55
+        $app->extend('dispatcher', function(EventDispatcherInterface $eventDispatcher) {
56 56
             $eventDispatcher->addListener(
57 57
                 KernelEvents::CONTROLLER,
58 58
                 [
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      */
87 87
     public function boot(Application $app)
88 88
     {
89
-        $app->before(function (Request $request) {
89
+        $app->before(function(Request $request) {
90 90
             TransferServer::getInstance()->setRequest($request);
91 91
         });
92 92
     }
Please login to merge, or discard this patch.