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
PaymentMethodInterface.php
13 lines
| 1 | <?php |
| 2 | |
| 3 | namespace GlobalPayments\WooCommercePaymentGatewayProvider\PaymentMethods; |
| 4 | |
| 5 | defined( 'ABSPATH' ) || exit; |
| 6 | |
| 7 | interface PaymentMethodInterface { |
| 8 | public function configure_method_settings(); |
| 9 | public function get_payment_method_form_fields(); |
| 10 | public function get_frontend_payment_method_options(); |
| 11 | public function get_request_type(); |
| 12 | } |
| 13 |