| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public function execute(Observer $observer) |
||
| 44 | { |
||
| 45 | if (!$this->configHelper->isApiEnabled()) { |
||
| 46 | return; |
||
| 47 | } |
||
| 48 | |||
| 49 | /** @var Customer $magentoCustomer */ |
||
| 50 | $magentoCustomer = $observer->getEvent()->getData('customer'); |
||
| 51 | |||
| 52 | $this->exportContactService->exportWithMagentoCustomer($magentoCustomer); |
||
| 53 | } |
||
| 55 |