Total Complexity | 6 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class CrefoPayApiConfig extends AbstractBundleConfig |
||
14 | { |
||
15 | /** |
||
16 | * @return string |
||
17 | */ |
||
18 | public function getCreateTransactionApiEndpoint(): string |
||
19 | { |
||
20 | return $this->get(CrefoPayApiConstants::CREATE_TRANSACTION_API_ENDPOINT); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | public function getReserveApiEndpoint(): string |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return string |
||
33 | */ |
||
34 | public function getCaptureApiEndpoint(): string |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @return string |
||
41 | */ |
||
42 | public function getCancelApiEndpoint(): string |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * @return string |
||
49 | */ |
||
50 | public function getRefundApiEndpoint(): string |
||
53 | } |
||
54 | |||
55 | /** |
||
56 | * @return string |
||
57 | */ |
||
58 | public function getFinishApiEndpoint(): string |
||
63 |