Files
ticketbeast/app/Billing/PaymentGateway.php
2017-01-18 13:52:33 -05:00

12 lines
196 B
PHP

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