Skip to content

Commit

Permalink
BP-2654 Add Apple Pay currency options for: USD, NOK, SEK, CHF, PLN. (#…
Browse files Browse the repository at this point in the history
…731)

Co-authored-by: Ivascu Madalin <[email protected]>
  • Loading branch information
harli91 and Ivascu Madalin authored Jun 13, 2023
1 parent a666e82 commit c64dc3c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Model/ConfigProvider/Method/Applepay.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,4 +146,22 @@ public function getAvailableButtons()

return $availableButtons;
}

/**
* @return array
*/
public function getBaseAllowedCurrencies()
{
return [
'EUR',
'USD',
'GBP',
'DKK',
'NOK',
'SEK',
'CHF',
'PLN'
];
}

}

0 comments on commit c64dc3c

Please sign in to comment.