| Total Complexity | 4 |
| Total Lines | 51 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | class Config extends GatewayConfig { |
||
| 24 | /** |
||
| 25 | * API Key. |
||
| 26 | * |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | public $api_key; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * API Live URL Prefix. |
||
| 33 | * |
||
| 34 | * @var string |
||
| 35 | */ |
||
| 36 | public $api_live_url_prefix; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Merchant Account. |
||
| 40 | * |
||
| 41 | * @var string |
||
| 42 | */ |
||
| 43 | public $merchant_account; |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Get API key. |
||
| 47 | * |
||
| 48 | * @return string |
||
| 49 | */ |
||
| 50 | 1 | public function get_api_key() { |
|
| 51 | 1 | return $this->api_key; |
|
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * Get merchant account. |
||
| 56 | * |
||
| 57 | * @return string |
||
| 58 | */ |
||
| 59 | 1 | public function get_merchant_account() { |
|
| 61 | } |
||
| 62 | |||
| 63 | /** |
||
| 64 | * Get API URL. |
||
| 65 | * |
||
| 66 | * @return string |
||
| 67 | */ |
||
| 68 | 1 | public function get_api_url() { |
|
| 74 | } |
||
| 75 | } |
||
| 76 |