Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
ziming authored May 16, 2024
1 parent 2dfc897 commit f8826d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Services/Twilio/TwilioVerificationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function __construct(Client $twilio, string $verifyId)
$this->verificationChecks = $twilio->verificationChecks;
}

public function send(PhoneNumber $number), string $channel = 'sms'): void
public function send(PhoneNumber $number, string $channel = 'sms'): void
{
try {
$this->verifications->create($number->formatE164(), $channel);
Expand Down

0 comments on commit f8826d5

Please sign in to comment.