File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,10 @@ abstract class BasePayment extends Object
43
43
private $ allowedCurrency = [
44
44
Gopay::CURRENCY_CZK ,
45
45
Gopay::CURRENCY_EUR ,
46
+ Gopay::CURRENCY_PLN ,
47
+ Gopay::CURRENCY_HUF ,
48
+ Gopay::CURRENCY_GBP ,
49
+ Gopay::CURRENCY_USD ,
46
50
];
47
51
48
52
/**
Original file line number Diff line number Diff line change @@ -95,6 +95,18 @@ class Gopay extends Object
95
95
/** @const Euro */
96
96
const CURRENCY_EUR = 'EUR ' ;
97
97
98
+ /** @const Polish zloty */
99
+ const CURRENCY_PLN = 'PLN ' ;
100
+
101
+ /** @const Hungarian forint */
102
+ const CURRENCY_HUF = 'HUF ' ;
103
+
104
+ /** @const British pound */
105
+ const CURRENCY_GBP = 'GBP ' ;
106
+
107
+ /** @const US dollar */
108
+ const CURRENCY_USD = 'USD ' ;
109
+
98
110
// LANGUAGES ===============================================================
99
111
100
112
/** @const Czech */
You can’t perform that action at this time.
0 commit comments