Skip to content

Commit 037bfb2

Browse files
committed
rememberToken should allow nullable
1 parent 7f23ec3 commit 037bfb2

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)