Skip to content

Commit

Permalink
Address prop spelling which blocks PayPo
Browse files Browse the repository at this point in the history
  • Loading branch information
adamterepora committed Jan 11, 2024
1 parent 79a3332 commit d2ccdc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Action/ConvertPaymentAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private function getCustomerData(OrderInterface $order): array
}

if (null !== $address = $order->getShippingAddress()) {
$customerData['p24_adress'] = $address->getStreet();
$customerData['p24_address'] = $address->getStreet();
$customerData['p24_zip'] = $address->getPostcode();
$customerData['p24_country'] = $address->getCountryCode();
$customerData['p24_phone'] = $address->getPhoneNumber();
Expand Down

0 comments on commit d2ccdc2

Please sign in to comment.