mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 11:14:06 +00:00
11 lines
147 B
PHP
11 lines
147 B
PHP
<?php
|
|
|
|
namespace App\Billing;
|
|
|
|
interface PaymentGateway
|
|
{
|
|
public function charge($amount, $token);
|
|
|
|
public function getValidTestToken();
|
|
}
|