Skip to content

Commit

Permalink
rememberToken should allow nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHAnderson committed Jan 26, 2025
1 parent 7f23ec3 commit 037bfb2
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 037bfb2

Please sign in to comment.