Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ibnnajjaar committed Jun 2, 2024
1 parent 086065b commit f9d6223
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Notifications/LoginVerificationTokenNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ class LoginVerificationTokenNotification extends Notification implements SmsNoti
/**
* The name of the intended user
*/
public string $name;
public ?string $name;

/**
* Create a new notification instance.
*
* @param string $verification_code
* @param string $name
* @param ?string $name
*/
public function __construct(string $verification_code, string $name = '')
public function __construct(string $verification_code, ?string $name = '')
{
$this->verification_code = $verification_code;
$this->name = $name;
Expand Down

0 comments on commit f9d6223

Please sign in to comment.