Files
tbbank-new/app/Modules/OtpVerification/otp-verification-helpers.php
2025-10-22 20:08:22 +05:00

13 lines
322 B
PHP

<?php
use App\Modules\OtpVerification\Models\OtpVerification;
use App\Modules\OtpVerification\Repositories\OtpVerificationRepository;
/**
* Send a sms verification
*/
function sendSMSVerification(string|int $phone_number): ?OtpVerification
{
return OtpVerificationRepository::sendSMSVerification($phone_number);
}