1 | <?php |
||
7 | class PayWithBank3D |
||
8 | { |
||
9 | public static $baseUrl = [ |
||
10 | 'staging' => 'https://staging.paywithbank3d.com/api/', |
||
11 | 'live' => 'https://paywithbank3d.com/api/', |
||
12 | ]; |
||
13 | |||
14 | public static $mode; |
||
15 | /** |
||
16 | * @var null |
||
17 | */ |
||
18 | public static $secretKey; |
||
19 | |||
20 | public static $publicKey; |
||
21 | |||
22 | public static function setup($publicKey, $secretKey, $mode = 'live') |
||
35 | } |
||
36 |