Skip to content

Commit 32b934b

Browse files
authored
Merge pull request #653 from TomHAnderson/hotfix/remember-token
rememberToken should allow nullable
2 parents 7f23ec3 + 037bfb2 commit 32b934b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Auth/Authenticatable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ trait Authenticatable
1212
protected string $password;
1313

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

1717
/**
1818
* Get the column name for the primary key

0 commit comments

Comments
 (0)