Files
ticketbeast/app/Billing/PaymentGateway.php
2018-01-29 13:13:29 -05:00

12 lines
219 B
PHP

<?php
namespace App\Billing;
interface PaymentGateway
{
public function charge($amount, $token, $destinationAccountId);
public function getValidTestToken();
public function newChargesDuring($callback);
}