Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
17 | class Config extends GatewayConfig { |
||
18 | public $merchant_id; |
||
19 | |||
20 | public $sub_id = 0; |
||
21 | |||
22 | public $private_key_password; |
||
23 | |||
24 | public $private_key; |
||
25 | |||
26 | public $private_certificate; |
||
27 | |||
28 | public function get_payment_server_url() { |
||
29 | return $this->payment_server_url; |
||
|
|||
30 | } |
||
31 | |||
32 | public function get_certificates() { |
||
34 | } |
||
35 | } |
||
36 |