| 1 | <?php |
||
| 2 | |||
| 3 | use Pnlinh\InfobipSms\Facades\InfobipSms; |
||
| 4 | |||
| 5 | if (!function_exists('infobip_sms_send')) { |
||
| 6 | /** |
||
| 7 | * @param $to |
||
| 8 | * @param $text |
||
| 9 | * |
||
| 10 | * @return mixed |
||
| 11 | */ |
||
| 12 | function infobip_sms_send($to, $text) |
||
| 13 | { |
||
| 14 | return InfobipSms::send($to, $text); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 15 | } |
||
| 16 | } |
||
| 17 |