Skip to content

Commit

Permalink
Fix support for PHP.
Browse files Browse the repository at this point in the history
Fixes a bug where the currency code for Philippine Peso was incorrectly listed as BHP in the main SDK class.
  • Loading branch information
benmajor committed Jun 1, 2020
1 parent 30d8b43 commit 591c32b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ExchangeRatesAPI.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class ExchangeRatesAPI
private $_currencies = [
'USD', 'GBP', 'EUR', 'JPY', 'BGN', 'CZK', 'DKK', 'HUF', 'PLN', 'RON',
'SEK', 'CHF', 'ISK', 'NOK', 'HRK', 'RUB', 'TRY', 'AUD', 'BRL', 'CAD',
'CNY', 'HKD', 'IDR', 'ILS', 'INR', 'KRW', 'MXN', 'MYR', 'NZD', 'BHP',
'CNY', 'HKD', 'IDR', 'ILS', 'INR', 'KRW', 'MXN', 'MYR', 'NZD', 'PHP',
'SGD', 'THB', 'ZAR'
];

Expand Down

0 comments on commit 591c32b

Please sign in to comment.