Skip to content

Commit 752001b

Browse files
committed
Added missed return statement
1 parent cdeaff4 commit 752001b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Twilio.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ protected function sendSmsMessage($message, $to)
6666
$params['messagingServiceSid'] = $serviceSid;
6767
}
6868

69-
$this->twilioService->messages->create($to, $params);
69+
return $this->twilioService->messages->create($to, $params);
7070
}
7171

7272
protected function makeCall($message, $to)

0 commit comments

Comments
 (0)