Files
tbbank-new/app/Modules/Sms/sms-helpers.php
2025-10-22 20:08:22 +05:00

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);
}