@@ -102,7 +102,7 @@ |
||
102 | 102 | |
103 | 103 | // create products |
104 | 104 | $products = array_map( |
105 | - static function (ProductBuilder $productBuilder) { |
|
105 | + static function(ProductBuilder $productBuilder) { |
|
106 | 106 | return $productBuilder->build(); |
107 | 107 | }, |
108 | 108 | $builder->productBuilders |
@@ -115,7 +115,7 @@ |
||
115 | 115 | } |
116 | 116 | |
117 | 117 | $tracks = array_map( |
118 | - function (string $trackingNumber) { |
|
118 | + function(string $trackingNumber) { |
|
119 | 119 | $carrierCode = strtok($this->order->getShippingMethod(), '_'); |
120 | 120 | $track = $this->trackFactory->create(); |
121 | 121 | $track->setCarrierCode($carrierCode); |
@@ -77,7 +77,7 @@ |
||
77 | 77 | $this->customerRepository->deleteById($orderFixture->getCustomerId()); |
78 | 78 | array_walk( |
79 | 79 | $orderItems, |
80 | - function (OrderItemInterface $orderItem) { |
|
80 | + function(OrderItemInterface $orderItem) { |
|
81 | 81 | $this->productRepository->deleteById($orderItem->getSku()); |
82 | 82 | } |
83 | 83 | ); |