10 lines
158 B
PHP
Executable File
10 lines
158 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Support\Sms;
|
|
|
|
interface SmsApi
|
|
{
|
|
public function sendText($number, $text): void;
|
|
public function sendCall($number, $ip): void;
|
|
}
|