@@ -38,7 +38,7 @@ |
||
| 38 | 38 | $aclFacade = $this->getFacade(); |
| 39 | 39 | $config = $this->getFactory()->getConfig(); |
| 40 | 40 | |
| 41 | - $app->before(function (Request $request) use ($app, $aclFacade, $config) { |
|
| 41 | + $app->before(function(Request $request) use ($app, $aclFacade, $config) { |
|
| 42 | 42 | $bundle = $request->attributes->get('module'); |
| 43 | 43 | $controller = $request->attributes->get('controller'); |
| 44 | 44 | $action = $request->attributes->get('action'); |
@@ -57,7 +57,7 @@ |
||
| 57 | 57 | */ |
| 58 | 58 | public function createProductSet(ProductSetTransfer $productSetTransfer) |
| 59 | 59 | { |
| 60 | - return $this->handleDatabaseTransaction(function () use ($productSetTransfer) { |
|
| 60 | + return $this->handleDatabaseTransaction(function() use ($productSetTransfer) { |
|
| 61 | 61 | return $this->executeCreateProductSetTransaction($productSetTransfer); |
| 62 | 62 | }); |
| 63 | 63 | } |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | */ |
| 45 | 45 | public function reorderProductSets(array $productSetTransfers) |
| 46 | 46 | { |
| 47 | - $this->handleDatabaseTransaction(function () use ($productSetTransfers) { |
|
| 47 | + $this->handleDatabaseTransaction(function() use ($productSetTransfers) { |
|
| 48 | 48 | $this->executeReorderProductSetsTransaction($productSetTransfers); |
| 49 | 49 | }); |
| 50 | 50 | } |
@@ -65,7 +65,7 @@ |
||
| 65 | 65 | */ |
| 66 | 66 | public function updateProductSet(ProductSetTransfer $productSetTransfer) |
| 67 | 67 | { |
| 68 | - return $this->handleDatabaseTransaction(function () use ($productSetTransfer) { |
|
| 68 | + return $this->handleDatabaseTransaction(function() use ($productSetTransfer) { |
|
| 69 | 69 | return $this->executeUpdateProductSetTransaction($productSetTransfer); |
| 70 | 70 | }); |
| 71 | 71 | } |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | { |
| 48 | 48 | $this->assertProductSetForExtension($productSetTransfer); |
| 49 | 49 | |
| 50 | - return $this->handleDatabaseTransaction(function () use ($productSetTransfer) { |
|
| 50 | + return $this->handleDatabaseTransaction(function() use ($productSetTransfer) { |
|
| 51 | 51 | return $this->executeExtendProductSetTransaction($productSetTransfer); |
| 52 | 52 | }); |
| 53 | 53 | } |
@@ -66,7 +66,7 @@ |
||
| 66 | 66 | { |
| 67 | 67 | $this->assertProductSetForDelete($productSetTransfer); |
| 68 | 68 | |
| 69 | - $this->handleDatabaseTransaction(function () use ($productSetTransfer) { |
|
| 69 | + $this->handleDatabaseTransaction(function() use ($productSetTransfer) { |
|
| 70 | 70 | $this->executeUpdateProductSetTransaction($productSetTransfer); |
| 71 | 71 | }); |
| 72 | 72 | } |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | { |
| 48 | 48 | $this->assertProductSetForExtension($productSetTransfer); |
| 49 | 49 | |
| 50 | - return $this->handleDatabaseTransaction(function () use ($productSetTransfer) { |
|
| 50 | + return $this->handleDatabaseTransaction(function() use ($productSetTransfer) { |
|
| 51 | 51 | return $this->executeRemoveFromProductSetTransaction($productSetTransfer); |
| 52 | 52 | }); |
| 53 | 53 | } |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | */ |
| 44 | 44 | public function createProductSetData(ProductSetTransfer $productSetTransfer) |
| 45 | 45 | { |
| 46 | - return $this->handleDatabaseTransaction(function () use ($productSetTransfer) { |
|
| 46 | + return $this->handleDatabaseTransaction(function() use ($productSetTransfer) { |
|
| 47 | 47 | return $this->executeCreateProductSetDataTransaction($productSetTransfer); |
| 48 | 48 | }); |
| 49 | 49 | } |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | */ |
| 37 | 37 | public function deleteProductSetData(SpyProductSet $productSetEntity) |
| 38 | 38 | { |
| 39 | - $this->handleDatabaseTransaction(function () use ($productSetEntity) { |
|
| 39 | + $this->handleDatabaseTransaction(function() use ($productSetEntity) { |
|
| 40 | 40 | $this->executeDeleteProductSetDataTransaction($productSetEntity); |
| 41 | 41 | }); |
| 42 | 42 | } |