| 1 |
<?php |
| 2 |
|
| 3 |
namespace Payplug\PayplugWoocommerce\Interfaces; |
| 4 |
|
| 5 |
interface PayplugGatewayBuilder |
| 6 |
{ |
| 7 |
public function get_icon(); |
| 8 |
|
| 9 |
public function display_notice(); |
| 10 |
|
| 11 |
public function checkGateway(); |
| 12 |
|
| 13 |
public function process_standard_payment($order, $amount, $customer_id); |
| 14 |
|
| 15 |
public function process_admin_options(); |
| 16 |
} |
| 17 |
|