Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
12 | 1 | public function getApiEndpoint($type = 'capture') |
|
13 | { |
||
14 | $urls = [ |
||
15 | 1 | 'capture' => 'https://4128888card.com.tw/cocs/client_order_append.php', |
|
16 | 1 | 'cancel' => 'https://4128888card.com.tw/cocs/client_order_cancel.php', |
|
17 | 1 | 'refund' => 'https://4128888card.com.tw/cocs/client_order_refund.php', |
|
18 | 1 | ]; |
|
19 | // return $this->options['sandbox'] ? 'https://4128888card.com.tw/cocs/client_order_append.php' : 'https://4128888card.com.tw/cocs/client_order_append.php'; |
||
20 | |||
21 | 1 | return $urls[$type]; |
|
22 | } |
||
23 | |||
59 |