12 lines
199 B
PHP
12 lines
199 B
PHP
<?php
|
|
|
|
use App\Modules\Sms\Repositories\SmsRepository;
|
|
|
|
/**
|
|
* Send a sms
|
|
*/
|
|
function sendSMS(string|int $phone, string|int $message): mixed
|
|
{
|
|
return SmsRepository::sendSMS($phone, $message);
|
|
}
|