@@ -127,7 +127,7 @@ |
||
| 127 | 127 | */ |
| 128 | 128 | protected function doSaveOrder(QuoteTransfer $quoteTransfer, CheckoutResponseTransfer $checkoutResponse) |
| 129 | 129 | { |
| 130 | - $this->handleDatabaseTransaction(function () use ($quoteTransfer, $checkoutResponse) { |
|
| 130 | + $this->handleDatabaseTransaction(function() use ($quoteTransfer, $checkoutResponse) { |
|
| 131 | 131 | $this->doSaveOrderTransaction($quoteTransfer, $checkoutResponse); |
| 132 | 132 | }); |
| 133 | 133 | |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | */ |
| 41 | 41 | public function saveOrderProductOptions(QuoteTransfer $quoteTransfer, SaveOrderTransfer $saveOrderTransfer) |
| 42 | 42 | { |
| 43 | - $this->handleDatabaseTransaction(function () use ($saveOrderTransfer) { |
|
| 43 | + $this->handleDatabaseTransaction(function() use ($saveOrderTransfer) { |
|
| 44 | 44 | $this->saveOrderProductOptionsTransaction($saveOrderTransfer); |
| 45 | 45 | }); |
| 46 | 46 | } |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | */ |
| 43 | 43 | public function deleteProductCategoryFilterByCategoryId($categoryId) |
| 44 | 44 | { |
| 45 | - $this->handleDatabaseTransaction(function () use ($categoryId) { |
|
| 45 | + $this->handleDatabaseTransaction(function() use ($categoryId) { |
|
| 46 | 46 | $this->executeDeleteProductCategoryFilterTransaction($categoryId); |
| 47 | 47 | }); |
| 48 | 48 | } |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | */ |
| 43 | 43 | public function updateProductCategoryFilter(ProductCategoryFilterTransfer $productCategoryFilterTransfer) |
| 44 | 44 | { |
| 45 | - return $this->handleDatabaseTransaction(function () use ($productCategoryFilterTransfer) { |
|
| 45 | + return $this->handleDatabaseTransaction(function() use ($productCategoryFilterTransfer) { |
|
| 46 | 46 | return $this->executeUpdateProductCategoryFilterTransaction($productCategoryFilterTransfer); |
| 47 | 47 | }); |
| 48 | 48 | } |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | */ |
| 36 | 36 | public function createProductCategoryFilter(ProductCategoryFilterTransfer $productCategoryFilterTransfer) |
| 37 | 37 | { |
| 38 | - return $this->handleDatabaseTransaction(function () use ($productCategoryFilterTransfer) { |
|
| 38 | + return $this->handleDatabaseTransaction(function() use ($productCategoryFilterTransfer) { |
|
| 39 | 39 | return $this->executeCreateProductCategoryFilterTransaction($productCategoryFilterTransfer); |
| 40 | 40 | }); |
| 41 | 41 | } |
@@ -135,7 +135,7 @@ |
||
| 135 | 135 | return $productLabelDictionaryItemTransfers; |
| 136 | 136 | } |
| 137 | 137 | |
| 138 | - usort($productLabelDictionaryItemTransfers, function ( |
|
| 138 | + usort($productLabelDictionaryItemTransfers, function( |
|
| 139 | 139 | ProductLabelDictionaryItemTransfer $productLabelTransferA, |
| 140 | 140 | ProductLabelDictionaryItemTransfer $productLabelTransferB |
| 141 | 141 | ) { |
@@ -70,7 +70,7 @@ |
||
| 70 | 70 | } |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | - $result = array_map(function ($attributeValues) { |
|
| 73 | + $result = array_map(function($attributeValues) { |
|
| 74 | 74 | $attributeValues = array_values(array_unique($attributeValues)); |
| 75 | 75 | |
| 76 | 76 | return $attributeValues; |
@@ -65,7 +65,7 @@ |
||
| 65 | 65 | $otherImageSets[] = $imageSetTransfer; |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - usort($otherImageSets, function (ProductImageSetStorageTransfer $a, ProductImageSetStorageTransfer $b) { |
|
| 68 | + usort($otherImageSets, function(ProductImageSetStorageTransfer $a, ProductImageSetStorageTransfer $b) { |
|
| 69 | 69 | return strcmp($a->getName(), $b->getName()); |
| 70 | 70 | }); |
| 71 | 71 | |
@@ -287,7 +287,7 @@ |
||
| 287 | 287 | */ |
| 288 | 288 | protected function getStoreNames(ArrayObject $stores) |
| 289 | 289 | { |
| 290 | - return array_map(function (StoreTransfer $storeTransfer) { |
|
| 290 | + return array_map(function(StoreTransfer $storeTransfer) { |
|
| 291 | 291 | return $storeTransfer->getName(); |
| 292 | 292 | }, $stores->getArrayCopy()); |
| 293 | 293 | } |