| 1 |
<?php |
| 2 |
|
| 3 |
namespace Payplug\PayplugWoocommerce\Interfaces; |
| 4 |
|
| 5 |
interface PayplugGatewayBuilder |
| 6 |
{ |
| 7 |
|
| 8 |
public function get_icon(); |
| 9 |
|
| 10 |
public function display_notice(); |
| 11 |
|
| 12 |
public function checkGateway(); |
| 13 |
|
| 14 |
public function process_standard_payment($order, $amount, $customer_id); |
| 15 |
|
| 16 |
//TODO:: remove this when decouple CC from PayplugGateway only needed for old BO |
| 17 |
public function process_admin_options(); |
| 18 |
|
| 19 |
} |
| 20 |
|