12 lines
160 B
PHP
12 lines
160 B
PHP
<?php
|
|
|
|
namespace Modules\Sms;
|
|
|
|
interface GatewayInterface
|
|
{
|
|
public function client();
|
|
|
|
|
|
public function send(string $to, string $message);
|
|
}
|