@@ -76,7 +76,7 @@ |
||
76 | 76 | |
77 | 77 | try { |
78 | 78 | $magentoCustomer = $this->magentoCustomerRepository->getById($message['magento_customer_id']); |
79 | - } catch (NoSuchEntityException|LocalizedException $e) { |
|
79 | + } catch (NoSuchEntityException | LocalizedException $e) { |
|
80 | 80 | $this->logger->error($e->getMessage()); |
81 | 81 | return; |
82 | 82 | } |
@@ -76,7 +76,7 @@ |
||
76 | 76 | |
77 | 77 | try { |
78 | 78 | $magentoCustomer = $this->magentoCustomerRepository->getById($message['magento_customer_id']); |
79 | - } catch (NoSuchEntityException|LocalizedException $e) { |
|
79 | + } catch (NoSuchEntityException | LocalizedException $e) { |
|
80 | 80 | $this->logger->error($e->getMessage()); |
81 | 81 | return; |
82 | 82 | } |
@@ -28,6 +28,6 @@ |
||
28 | 28 | */ |
29 | 29 | protected function doWrite($message, $newline) |
30 | 30 | { |
31 | - $this->output .= $message . ($newline ? "\n" : ''); |
|
31 | + $this->output .= $message.($newline ? "\n" : ''); |
|
32 | 32 | } |
33 | 33 | } |
@@ -107,7 +107,7 @@ |
||
107 | 107 | $this->orderRepository->expects($this->never()) |
108 | 108 | ->method('getOrCreateByMagentoQuoteId'); |
109 | 109 | |
110 | - $this->exportOrderConsumer->consume(json_encode(['magento_order_id' => $magentoOrderId])); |
|
110 | + $this->exportOrderConsumer->consume(json_encode(['magento_order_id' => $magentoOrderId])); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | public function testConsumeApiHttpException() |