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