with-resource-it.php
30 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Gateways\Paypal\Scenarios_Logic; |
| 5 | |
| 6 | use Jet_Form_Builder\Exceptions\Gateway_Exception; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | interface With_Resource_It { |
| 14 | |
| 15 | /** |
| 16 | * @return array |
| 17 | * @throws Gateway_Exception |
| 18 | */ |
| 19 | public function create_resource(); |
| 20 | |
| 21 | /** |
| 22 | * @param $gateway_resource |
| 23 | * |
| 24 | * @return array |
| 25 | * @throws Gateway_Exception |
| 26 | */ |
| 27 | public function save_resource( $gateway_resource ); |
| 28 | |
| 29 | } |
| 30 |