Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | public function build(MagentoCustomer $magentoCustomer): array |
||
34 | { |
||
35 | return [ |
||
36 | 'connectionid' => (int)$this->configHelper->getConnectionId(), |
||
37 | 'externalid' => (int)$magentoCustomer->getId(), |
||
38 | 'email' => $magentoCustomer->getData('email'), |
||
39 | 'acceptsMarketing' => 1 // TODO::check how this value could be set |
||
40 | ]; |
||
43 |