Skip to content

Commit

Permalink
Add missing interface implementation for Bongo
Browse files Browse the repository at this point in the history
  • Loading branch information
dmohns committed Oct 30, 2024
1 parent b499c25 commit bd6a6ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/backend/app/Sms/Bongo.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use App\Lib\ISmsProvider;
use App\Models\Sms;
use App\Models\SmsAndroidSetting;
use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Query;
use Illuminate\Support\Facades\Log;
Expand Down Expand Up @@ -85,7 +86,7 @@ public function sendGetSms(string $number, string $body)
*
* @throws \Exception
*/
public function sendSms(string $number, string $body, $callback)
public function sendSms(string $number, string $body, string $callback, ?SmsAndroidSetting $smsAndroidSetting = null)
{
$httpClient = new Client();
if ($number[0] !== '+') {
Expand Down

0 comments on commit bd6a6ff

Please sign in to comment.