Skip to content

Commit bcb4369

Browse files
committed
Issue 38 move order of billTo and customerIp elements in AIM authorisation.
1 parent e35e615 commit bcb4369

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Message/AIMAuthorizeRequest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ public function getData()
1717
$data = $this->getBaseData();
1818
$data->transactionRequest->amount = $this->getAmount();
1919
$this->addPayment($data);
20-
$this->addCustomerIP($data);
2120
$this->addBillingData($data);
21+
// CHECKME: is shipping data useful here?
22+
//$this->addShippingData($data);
23+
$this->addCustomerIP($data);
2224
$this->addTransactionSettings($data);
2325

2426
return $data;

0 commit comments

Comments
 (0)