Failed Conditions
Push — master ( 494e02...0ec8a9 )
by mark
68:47 queued 24:21
created
src/Spryker/Service/UtilSanitizeXss/UtilSanitizeXssDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      */
36 36
     public function addXssSanitizer(Container $container): Container
37 37
     {
38
-        $container->set(static::XSS_SANITIZER, function () {
38
+        $container->set(static::XSS_SANITIZER, function() {
39 39
             return new UtilSanitizeToAntiXssAdapter();
40 40
         });
41 41
 
Please login to merge, or discard this patch.
Development/src/Spryker/Zed/Development/Business/CodeTest/CodeTester.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
         }
221 221
 
222 222
         $process = new Process($commandLine, $this->config->getPathToRoot(), null, null, $this->config->getProcessTimeout());
223
-        $process->run(function ($type, $buffer) {
223
+        $process->run(function($type, $buffer) {
224 224
             echo $buffer;
225 225
         });
226 226
 
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
         );
253 253
 
254 254
         $process = new Process($commandLine, $this->config->getPathToRoot(), null, null, $this->config->getProcessTimeout());
255
-        $process->run(function ($type, $buffer) {
255
+        $process->run(function($type, $buffer) {
256 256
             echo $buffer;
257 257
         });
258 258
 
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
         $commandLine[] = 'build';
273 273
 
274 274
         $process = new Process($commandLine, $this->config->getPathToRoot(), null, null, $this->config->getProcessTimeout());
275
-        $process->run(function ($type, $buffer) use ($options) {
275
+        $process->run(function($type, $buffer) use ($options) {
276 276
             if ($options[static::OPTION_VERBOSE]) {
277 277
                 echo $buffer;
278 278
             }
Please login to merge, or discard this patch.
Zed/ProductOfferAvailability/ProductOfferAvailabilityDependencyProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     protected function addOmsFacade(Container $container): Container
44 44
     {
45
-        $container->set(static::FACADE_OMS, function (Container $container) {
45
+        $container->set(static::FACADE_OMS, function(Container $container) {
46 46
             return new ProductOfferAvailabilityToOmsFacadeBridge($container->getLocator()->oms()->facade());
47 47
         });
48 48
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     protected function addProductOfferStockFacade(Container $container): Container
58 58
     {
59
-        $container->set(static::FACADE_PRODUCT_OFFER_STOCK, function (Container $container) {
59
+        $container->set(static::FACADE_PRODUCT_OFFER_STOCK, function(Container $container) {
60 60
             return new ProductOfferAvailabilityToProductOfferStockFacadeBridge($container->getLocator()->productOfferStock()->facade());
61 61
         });
62 62
 
Please login to merge, or discard this patch.
Plugin/Event/Listener/ProductOfferStoragePublishListenerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     {
41 41
         parent::setUp();
42 42
 
43
-        $this->tester->setDependency(QueueDependencyProvider::QUEUE_ADAPTERS, function (Container $container) {
43
+        $this->tester->setDependency(QueueDependencyProvider::QUEUE_ADAPTERS, function(Container $container) {
44 44
             return [
45 45
                 $container->getLocator()->rabbitMq()->client()->createQueueAdapter(),
46 46
             ];
Please login to merge, or discard this patch.
Plugin/Event/Listener/ProductOfferStockStoragePublishListenerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     {
41 41
         parent::setUp();
42 42
 
43
-        $this->tester->setDependency(QueueDependencyProvider::QUEUE_ADAPTERS, function (Container $container) {
43
+        $this->tester->setDependency(QueueDependencyProvider::QUEUE_ADAPTERS, function(Container $container) {
44 44
             return [
45 45
                 $container->getLocator()->rabbitMq()->client()->createQueueAdapter(),
46 46
             ];
Please login to merge, or discard this patch.
Plugin/Event/Listener/OmsProductReservationStoragePublishListenerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     {
41 41
         parent::setUp();
42 42
 
43
-        $this->tester->setDependency(QueueDependencyProvider::QUEUE_ADAPTERS, function (Container $container) {
43
+        $this->tester->setDependency(QueueDependencyProvider::QUEUE_ADAPTERS, function(Container $container) {
44 44
             return [
45 45
                 $container->getLocator()->rabbitMq()->client()->createQueueAdapter(),
46 46
             ];
Please login to merge, or discard this patch.
Shared/ProductOfferStock/_support/Helper/ProductOfferStockDataHelper.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
 
40 40
         $productOfferStockTransfer->fromArray($productOfferStockEntity->toArray(), true);
41 41
 
42
-        $this->getDataCleanupHelper()->_addCleanup(function () use ($productOfferStockEntity): void {
42
+        $this->getDataCleanupHelper()->_addCleanup(function() use ($productOfferStockEntity): void {
43 43
             $productOfferStockEntity->delete();
44 44
         });
45 45
 
Please login to merge, or discard this patch.
ProductOfferValidityDataImportDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     protected function addProductOfferFacade(Container $container): Container
40 40
     {
41
-        $container->set(static::FACADE_PRODUCT_OFFER, function (Container $container) {
41
+        $container->set(static::FACADE_PRODUCT_OFFER, function(Container $container) {
42 42
             return new ProductOfferValidityDataImportToProductOfferFacadeBridge($container->getLocator()->productOffer()->facade());
43 43
         });
44 44
 
Please login to merge, or discard this patch.
Zed/ProductOfferValidity/_support/Helper/ProductOfferValidityHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $productOfferValidityEntity->setFkProductOffer($productOfferValidityTransfer->getIdProductOffer());
33 33
         $productOfferValidityEntity->save();
34 34
 
35
-        $this->getDataCleanupHelper()->_addCleanup(function () use ($productOfferValidityEntity): void {
35
+        $this->getDataCleanupHelper()->_addCleanup(function() use ($productOfferValidityEntity): void {
36 36
             $productOfferValidityEntity->delete();
37 37
         });
38 38
 
Please login to merge, or discard this patch.