mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-02-02 21:48:01 +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();
|
|
}
|