@@ -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 | } |
@@ -106,7 +106,7 @@ |
||
| 106 | 106 | $this->orderRepository->expects($this->never()) |
| 107 | 107 | ->method('getOrCreateByMagentoQuoteId'); |
| 108 | 108 | |
| 109 | - $this->exportOrderConsumer->consume(json_encode(['magento_order_id' => $magentoOrderId])); |
|
| 109 | + $this->exportOrderConsumer->consume(json_encode(['magento_order_id' => $magentoOrderId])); |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | public function testConsumeApiRequestException() |