@@ -46,7 +46,7 @@ |
||
46 | 46 | { |
47 | 47 | $builder->add(static::FIELD_STOCKS, Select2ComboBoxType::class, [ |
48 | 48 | 'choices' => $options[static::FIELD_STOCKS], |
49 | - 'choice_value' => function (StockTransfer $stockTransfer) { |
|
49 | + 'choice_value' => function(StockTransfer $stockTransfer) { |
|
50 | 50 | return $stockTransfer->getIdStock(); |
51 | 51 | }, |
52 | 52 | 'choice_label' => StockTransfer::NAME, |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | $merchantStockTransfer->setIdMerchantStock($merchantStockEntity->getIdMerchantStock()); |
36 | 36 | |
37 | - $this->getDataCleanupHelper()->_addCleanup(function () use ($merchantStockEntity): void { |
|
37 | + $this->getDataCleanupHelper()->_addCleanup(function() use ($merchantStockEntity): void { |
|
38 | 38 | $this->cleanupMerchantStock($merchantStockEntity); |
39 | 39 | }); |
40 | 40 |
@@ -123,7 +123,7 @@ |
||
123 | 123 | $this->info('Run command: ' . $command); |
124 | 124 | $process = new Process(explode(' ', $command), APPLICATION_ROOT_DIR); |
125 | 125 | $process->setTimeout(null); |
126 | - $process->run(function ($type, $buffer) { |
|
126 | + $process->run(function($type, $buffer) { |
|
127 | 127 | echo $buffer; |
128 | 128 | }); |
129 | 129 |
@@ -93,7 +93,7 @@ |
||
93 | 93 | |
94 | 94 | Example: |
95 | 95 | - code:npm --build-all will build the client resources for the core, the project Zed and the project Yves code |
96 | -EOM; |
|
96 | +eom; |
|
97 | 97 | $this->setHelp($help); |
98 | 98 | |
99 | 99 | $this->addOption( |
@@ -121,7 +121,7 @@ |
||
121 | 121 | $matchesTrimmed[] = trim($item); |
122 | 122 | } |
123 | 123 | |
124 | - $matchesFiltered = array_filter($matchesTrimmed, function ($match) { |
|
124 | + $matchesFiltered = array_filter($matchesTrimmed, function($match) { |
|
125 | 125 | return (bool)strlen($match); |
126 | 126 | }); |
127 | 127 | if (!$matchesFiltered) { |
@@ -74,7 +74,7 @@ |
||
74 | 74 | |
75 | 75 | $resolver->setDefaults([ |
76 | 76 | 'validation_groups' => new GroupSequence([ |
77 | - static::GROUP_DEFAULT, |
|
77 | + static::GROUP_DEFAULT, |
|
78 | 78 | static::GROUP_AFTER, |
79 | 79 | ]), |
80 | 80 | 'constraints' => [ |
@@ -69,7 +69,7 @@ |
||
69 | 69 | $productRelationTransfer->requireProductRelationType() |
70 | 70 | ->requireProductRelationKey(); |
71 | 71 | |
72 | - return $this->getTransactionHandler()->handleTransaction(function () use ($productRelationTransfer) { |
|
72 | + return $this->getTransactionHandler()->handleTransaction(function() use ($productRelationTransfer) { |
|
73 | 73 | return $this->executeCreateProductRelationTransaction($productRelationTransfer); |
74 | 74 | }); |
75 | 75 | } |
@@ -59,7 +59,7 @@ |
||
59 | 59 | */ |
60 | 60 | public function deleteProductRelation(int $idProductRelation): ProductRelationResponseTransfer |
61 | 61 | { |
62 | - return $this->getTransactionHandler()->handleTransaction(function () use ($idProductRelation) { |
|
62 | + return $this->getTransactionHandler()->handleTransaction(function() use ($idProductRelation) { |
|
63 | 63 | return $this->executeDeleteProductRelationTransaction($idProductRelation); |
64 | 64 | }); |
65 | 65 | } |
@@ -45,7 +45,7 @@ |
||
45 | 45 | */ |
46 | 46 | public function update(StoreRelationTransfer $storeRelationTransfer): void |
47 | 47 | { |
48 | - $this->getTransactionHandler()->handleTransaction(function () use ($storeRelationTransfer) { |
|
48 | + $this->getTransactionHandler()->handleTransaction(function() use ($storeRelationTransfer) { |
|
49 | 49 | $this->executeUpdateStoreRelationTransaction($storeRelationTransfer); |
50 | 50 | }); |
51 | 51 | } |
@@ -67,7 +67,7 @@ |
||
67 | 67 | */ |
68 | 68 | public function updateProductRelation(ProductRelationTransfer $productRelationTransfer): ProductRelationResponseTransfer |
69 | 69 | { |
70 | - return $this->getTransactionHandler()->handleTransaction(function () use ($productRelationTransfer) { |
|
70 | + return $this->getTransactionHandler()->handleTransaction(function() use ($productRelationTransfer) { |
|
71 | 71 | return $this->executeUpdateProductRelationTransaction($productRelationTransfer); |
72 | 72 | }); |
73 | 73 | } |