install
This commit is contained in:
11
app/Modules/Sms/sms-helpers.php
Normal file
11
app/Modules/Sms/sms-helpers.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
use App\Modules\Sms\Repositories\SmsRepository;
|
||||
|
||||
/**
|
||||
* Send a sms
|
||||
*/
|
||||
function sendSMS(string|int $phone, string|int $message): mixed
|
||||
{
|
||||
return SmsRepository::sendSMS($phone, $message);
|
||||
}
|
||||
Reference in New Issue
Block a user