with-resource-it.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Gateways\Paypal\Scenarios_Logic; |
| 5 | |
| 6 | use Jet_Form_Builder\Exceptions\Gateway_Exception; |
| 7 | |
| 8 | interface With_Resource_It { |
| 9 | |
| 10 | /** |
| 11 | * @return array |
| 12 | * @throws Gateway_Exception |
| 13 | */ |
| 14 | public function create_resource(); |
| 15 | |
| 16 | /** |
| 17 | * @param $resource |
| 18 | * |
| 19 | * @return array |
| 20 | * @throws Gateway_Exception |
| 21 | */ |
| 22 | public function save_resource( $resource ); |
| 23 | |
| 24 | } |
| 25 |