@@ -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 | } |
@@ -78,7 +78,7 @@ |
||
| 78 | 78 | |
| 79 | 79 | try { |
| 80 | 80 | $magentoCustomer = $this->magentoCustomerRepository->getById($message['magento_customer_id']); |
| 81 | - } catch (NoSuchEntityException|LocalizedException $e) { |
|
| 81 | + } catch (NoSuchEntityException | LocalizedException $e) { |
|
| 82 | 82 | $this->logger->error($e->getMessage()); |
| 83 | 83 | return; |
| 84 | 84 | } |
@@ -106,7 +106,7 @@ |
||
| 106 | 106 | $this->orderRepository->expects($this->never()) |
| 107 | 107 | ->method('getOrCreateByMagentoOrderId'); |
| 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 | /** |