From 658843bb930a9be526dba050a5bd696e5574fe71 Mon Sep 17 00:00:00 2001 From: bartjuh4 Date: Sun, 2 Feb 2025 09:19:18 +0100 Subject: [PATCH 1/2] rememberToken should allow nullable --- src/Auth/Authenticatable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Auth/Authenticatable.php b/src/Auth/Authenticatable.php index 51de9676..9f802876 100644 --- a/src/Auth/Authenticatable.php +++ b/src/Auth/Authenticatable.php @@ -56,7 +56,7 @@ public function getAuthPassword(): string /** * Get the token value for the "remember me" session. */ - public function getRememberToken(): string + public function getRememberToken(): ?string { return $this->rememberToken; } From 3a55962b9defb59f4d33b60b612ee0cd17f360be Mon Sep 17 00:00:00 2001 From: bartjuh4 Date: Sun, 2 Feb 2025 09:43:28 +0100 Subject: [PATCH 2/2] rememberToken should allow nullable --- src/Auth/Authenticatable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Auth/Authenticatable.php b/src/Auth/Authenticatable.php index 9f802876..29963ff8 100644 --- a/src/Auth/Authenticatable.php +++ b/src/Auth/Authenticatable.php @@ -56,7 +56,7 @@ public function getAuthPassword(): string /** * Get the token value for the "remember me" session. */ - public function getRememberToken(): ?string + public function getRememberToken(): null|string { return $this->rememberToken; }