| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class Config extends GatewayConfig { |
||
| 18 | public $merchant_id; |
||
| 19 | |||
| 20 | public $sub_id = 0; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Payment server URL. |
||
| 24 | * |
||
| 25 | * @var string|null |
||
| 26 | */ |
||
| 27 | public $payment_server_url; |
||
| 28 | |||
| 29 | public $private_key_password; |
||
| 30 | |||
| 31 | public $private_key; |
||
| 32 | |||
| 33 | public $private_certificate; |
||
| 34 | |||
| 35 | public function get_payment_server_url() { |
||
| 39 |