Skip to content

Commit

Permalink
Merge pull request #653 from TomHAnderson/hotfix/remember-token
Browse files Browse the repository at this point in the history
rememberToken should allow nullable
  • Loading branch information
TomHAnderson authored Jan 26, 2025
2 parents 7f23ec3 + 037bfb2 commit 32b934b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Auth/Authenticatable.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ trait Authenticatable
protected string $password;

#[ORM\Column(name: 'remember_token', type: 'string', nullable: true)]
protected string $rememberToken;
protected string|null $rememberToken;

/**
* Get the column name for the primary key
Expand Down

0 comments on commit 32b934b

Please sign in to comment.