FleetCart/Modules/Sms/GatewayInterface.php

11 lines
158 B
PHP
Raw Permalink Normal View History

2023-06-11 12:14:03 +00:00
<?php
namespace Modules\Sms;
interface GatewayInterface
{
public function client();
public function send(string $to, string $message);
}