Apm
1 year ago
BuyNowPayLater
1 year ago
DigitalWallets
1 year ago
OpenBanking
1 year ago
AbstractAsyncPaymentMethod.php
1 year ago
AbstractPaymentMethod.php
1 year ago
AsyncPaymentMethodInterface.php
2 years ago
PaymentMethodInterface.php
2 years ago
AsyncPaymentMethodInterface.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | namespace GlobalPayments\WooCommercePaymentGatewayProvider\PaymentMethods; |
| 4 | |
| 5 | defined( 'ABSPATH' ) || exit; |
| 6 | |
| 7 | interface AsyncPaymentMethodInterface { |
| 8 | public function add_hooks(); |
| 9 | public function init_form_fields(); |
| 10 | public function is_available(); |
| 11 | public function get_provider_endpoints(); |
| 12 | public function process_payment($order_id); |
| 13 | public function thankyou_order_received_text($text); |
| 14 | } |
| 15 |