Passed
Push — master ( ccefde...3608d3 )
by
unknown
25:50
created
Zed/CompanyBusinessUnit/Persistence/CompanyBusinessUnitRepository.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
             ->endUse()
172 172
             ->find();
173 173
 
174
-         return $customerReferences->toArray();
174
+            return $customerReferences->toArray();
175 175
     }
176 176
 
177 177
     /**
Please login to merge, or discard this patch.
Collector/src/Spryker/Zed/Collector/Business/Exporter/CollectorExporter.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
             ->setFormatter(new SimpleArrayFormatter())
187 187
             ->find();
188 188
 
189
-         return $touchCollection->toArray();
189
+            return $touchCollection->toArray();
190 190
     }
191 191
 
192 192
     /**
Please login to merge, or discard this patch.
src/Spryker/Zed/Shipment/Business/Checkout/MultiShipmentOrderSaver.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
     {
84 84
         $this->assertShipmentRequirements($quoteTransfer->getItems());
85 85
 
86
-        $this->handleDatabaseTransaction(function () use ($quoteTransfer, $saveOrderTransfer) {
86
+        $this->handleDatabaseTransaction(function() use ($quoteTransfer, $saveOrderTransfer) {
87 87
             $this->saveOrderShipmentTransaction($quoteTransfer, $saveOrderTransfer);
88 88
         });
89 89
     }
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     {
99 99
         $this->assertShipmentRequirements($quoteTransfer->getItems());
100 100
 
101
-        $this->handleDatabaseTransaction(function () use ($quoteTransfer, $saveOrderTransfer) {
101
+        $this->handleDatabaseTransaction(function() use ($quoteTransfer, $saveOrderTransfer) {
102 102
             $this->saveSalesOrderShipmentTransaction($quoteTransfer, $saveOrderTransfer);
103 103
         });
104 104
     }
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
     ): ShipmentGroupTransfer {
118 118
         $this->assertShipmentRequirements($orderTransfer->getItems());
119 119
 
120
-        $shipmentGroupTransfer = $this->handleDatabaseTransaction(function () use ($orderTransfer, $shipmentGroupTransfer, $saveOrderTransfer) {
120
+        $shipmentGroupTransfer = $this->handleDatabaseTransaction(function() use ($orderTransfer, $shipmentGroupTransfer, $saveOrderTransfer) {
121 121
             return $this->saveOrderShipmentTransactionByShipmentGroup(
122 122
                 $orderTransfer,
123 123
                 $shipmentGroupTransfer,
Please login to merge, or discard this patch.
SharedCart/src/Spryker/Zed/SharedCart/Persistence/SharedCartRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -296,7 +296,7 @@
 block discarded – undo
296 296
             ->select([SpyQuoteTableMap::COL_ID_QUOTE])
297 297
             ->find();
298 298
 
299
-        $ownQuoteIdCollection = array_map(function ($value) {
299
+        $ownQuoteIdCollection = array_map(function($value) {
300 300
             return (int)$value;
301 301
         }, $quoteIds->toArray());
302 302
 
Please login to merge, or discard this patch.
src/Spryker/Zed/CompanyRole/Persistence/CompanyRoleRepository.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -213,7 +213,7 @@
 block discarded – undo
213 213
             ->select([SpyCompanyRoleToCompanyUserTableMap::COL_FK_COMPANY_USER])
214 214
             ->find();
215 215
 
216
-         return $companyUserIds->toArray();
216
+            return $companyUserIds->toArray();
217 217
     }
218 218
 
219 219
     /**
Please login to merge, or discard this patch.
Communication/DataProvider/CategoryDataProvider.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
             ->queryCmsBlockWithTemplate()
171 171
             ->find();
172 172
 
173
-         return $cmsBlockCollection->toKeyValue('idCmsBlock', 'name');
173
+            return $cmsBlockCollection->toKeyValue('idCmsBlock', 'name');
174 174
     }
175 175
 
176 176
     /**
@@ -218,6 +218,6 @@  discard block
 block discarded – undo
218 218
             ->queryCategoryTemplate()
219 219
             ->find();
220 220
 
221
-         return $categoryCollection->toKeyValue(CategoryTemplateTransfer::ID_CATEGORY_TEMPLATE, CategoryTemplateTransfer::NAME);
221
+            return $categoryCollection->toKeyValue(CategoryTemplateTransfer::ID_CATEGORY_TEMPLATE, CategoryTemplateTransfer::NAME);
222 222
     }
223 223
 }
Please login to merge, or discard this patch.
Communication/DataProvider/CmsBlockDataProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -193,6 +193,6 @@
 block discarded – undo
193 193
             ->orderByIdCmsBlockCategoryPosition()
194 194
             ->find();
195 195
 
196
-         return $cmsBlockCategoryPositionCollection->toKeyValue('idCmsBlockCategoryPosition', 'name');
196
+            return $cmsBlockCategoryPositionCollection->toKeyValue('idCmsBlockCategoryPosition', 'name');
197 197
     }
198 198
 }
Please login to merge, or discard this patch.