Passed
Push — master ( e5e99a...698028 )
by
unknown
58:31
created
Plugin/ServiceProvider/AssertUrlConfigurationServiceProvider.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
     public function boot(Application $app)
39 39
     {
40
-        $app->before(function (Request $request) {
40
+        $app->before(function(Request $request) {
41 41
             $this->assertMatchingHostName($request);
42 42
         }, Application::EARLY_EVENT);
43 43
     }
Please login to merge, or discard this patch.
src/Spryker/Zed/CategoryDataImport/Business/Model/CategoryWriterStep.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@
 block discarded – undo
161 161
                 $this->addPublishEvents(CategoryEvents::CATEGORY_TREE_PUBLISH, $categoryNodeEntity->getIdCategoryNode());
162 162
             }
163 163
 
164
-            $convertCallback = function ($value) {
164
+            $convertCallback = function($value) {
165 165
                 return mb_strtolower(str_replace(' ', '-', $value));
166 166
             };
167 167
             $urlPathParts = array_map($convertCallback, $urlPathParts);
Please login to merge, or discard this patch.
Spryker/Zed/SharedCart/Business/Installer/QuotePermissionGroupInstaller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      */
43 43
     public function install(): void
44 44
     {
45
-        $this->getTransactionHandler()->handleTransaction(function () {
45
+        $this->getTransactionHandler()->handleTransaction(function() {
46 46
             $this->executeInstallTransaction();
47 47
         });
48 48
     }
Please login to merge, or discard this patch.
src/Spryker/Zed/Development/Business/CodeBuilder/Bridge/BridgeBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -560,7 +560,7 @@
 block discarded – undo
560 560
 
561 561
         $useStatements = array_keys($useStatements);
562 562
         sort($useStatements);
563
-        $useStatements = array_reduce($useStatements, function ($prevUseStatement, $useStatement) {
563
+        $useStatements = array_reduce($useStatements, function($prevUseStatement, $useStatement) {
564 564
             return $prevUseStatement . PHP_EOL . 'use ' . $useStatement . ';';
565 565
         }, '');
566 566
 
Please login to merge, or discard this patch.
Zed/ShoppingList/Business/Installer/ShoppingListPermissionInstaller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      */
43 43
     public function install(): void
44 44
     {
45
-        $this->getTransactionHandler()->handleTransaction(function () {
45
+        $this->getTransactionHandler()->handleTransaction(function() {
46 46
             $this->executeInstallTransaction();
47 47
         });
48 48
     }
Please login to merge, or discard this patch.
SprykerTest/Zed/ProductBarcode/_support/Helper/ProductBarcodeMockHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     public function getBarcodePluginMock(): BarcodeGeneratorPluginInterface
18 18
     {
19 19
         return Stub::makeEmpty(BarcodeGeneratorPluginInterface::class, [
20
-            'generate' => function (string $text): BarcodeResponseTransfer {
20
+            'generate' => function(string $text): BarcodeResponseTransfer {
21 21
                 return (new BarcodeResponseTransfer())
22 22
                     ->setCode($text)
23 23
                     ->setEncoding(static::GENERATED_ENCODING);
Please login to merge, or discard this patch.
Bundles/Quote/src/Spryker/Zed/Quote/Business/Model/QuoteDeleter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
         $quoteResponseTransfer = new QuoteResponseTransfer();
61 61
         $quoteResponseTransfer->setIsSuccessful(false);
62 62
         if ($this->validateQuote($quoteTransfer)) {
63
-            return $this->getTransactionHandler()->handleTransaction(function () use ($quoteTransfer) {
63
+            return $this->getTransactionHandler()->handleTransaction(function() use ($quoteTransfer) {
64 64
                 return $this->executeDeleteTransaction($quoteTransfer);
65 65
             });
66 66
         }
Please login to merge, or discard this patch.
src/Spryker/Zed/SharedCart/Business/Model/QuoteCompanyUserWriter.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 updateQuoteCompanyUsers(QuoteTransfer $quoteTransfer): QuoteTransfer
51 51
     {
52
-        return $this->getTransactionHandler()->handleTransaction(function () use ($quoteTransfer) {
52
+        return $this->getTransactionHandler()->handleTransaction(function() use ($quoteTransfer) {
53 53
             return $this->executeUpdateQuoteCompanyUsersTransaction($quoteTransfer);
54 54
         });
55 55
     }
Please login to merge, or discard this patch.
PriceProductStorage/Business/Storage/PriceProductConcreteStorageWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
             }
122 122
         }
123 123
 
124
-        array_walk_recursive($priceProductConcreteStorageMap, function (SpyPriceProductConcreteStorage $priceProductConcreteStorageEntity) {
124
+        array_walk_recursive($priceProductConcreteStorageMap, function(SpyPriceProductConcreteStorage $priceProductConcreteStorageEntity) {
125 125
             $priceProductConcreteStorageEntity->delete();
126 126
         });
127 127
     }
Please login to merge, or discard this patch.