Files
ticketbeast/app/Billing/PaymentGateway.php
2016-11-09 10:35:42 -05:00

9 lines
105 B
PHP

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