20 lines
289 B
PHP
Executable File
20 lines
289 B
PHP
Executable File
<?php
|
|
namespace App\Package;
|
|
|
|
interface Tap
|
|
{
|
|
|
|
public function charge($data);
|
|
|
|
public function getCharge($charge_id);
|
|
|
|
public function chargesList($options);
|
|
|
|
public function refund($data = []);
|
|
|
|
public function getRefund($refund_id);
|
|
|
|
public function refundList($options);
|
|
|
|
}
|