BuyNowPayLater
3 years ago
DigitalWallets
3 years ago
AbstractPaymentMethod.php
3 years ago
PaymentMethodInterface.php
3 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 |