Skip to content
This repository has been archived by the owner on Aug 24, 2022. It is now read-only.

Commit

Permalink
Rename address zip to postal code.
Browse files Browse the repository at this point in the history
  • Loading branch information
rvdsteege committed Sep 25, 2018
1 parent 85c6e40 commit 639c25d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public function start( Payment $payment ) {
'company_coc' => $billing_address->get_company_coc(),
'line_1' => $billing_address->get_line_1(),
'line_2' => $billing_address->get_line_2(),
'zip' => $billing_address->get_zip(),
'zip' => $billing_address->get_postal_code(),
'city' => $billing_address->get_city(),
'country' => $billing_address->get_country(),
'country_code' => $billing_address->get_country_code(),
Expand All @@ -180,7 +180,7 @@ public function start( Payment $payment ) {
'company_coc' => $shipping_address->get_company_coc(),
'line_1' => $shipping_address->get_line_1(),
'line_2' => $shipping_address->get_line_2(),
'zip' => $shipping_address->get_zip(),
'zip' => $shipping_address->get_postal_code(),
'city' => $shipping_address->get_city(),
'country' => $shipping_address->get_country(),
'country_code' => $shipping_address->get_country_code(),
Expand Down

0 comments on commit 639c25d

Please sign in to comment.