Files
ticketbeast/app/Billing/PaymentGateway.php
2017-01-17 19:57:34 -05:00

11 lines
147 B
PHP

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