Skip to content

Commit 10a13dd

Browse files
Add 2 recently missing return types
1 parent 8446077 commit 10a13dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Authentication/RememberMe/InMemoryTokenProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function loadTokenBySeries(string $series): PersistentTokenInterface
3131
return $this->tokens[$series];
3232
}
3333

34-
public function updateToken(string $series, #[\SensitiveParameter] string $tokenValue, \DateTimeInterface $lastUsed)
34+
public function updateToken(string $series, #[\SensitiveParameter] string $tokenValue, \DateTimeInterface $lastUsed): void
3535
{
3636
if (!isset($this->tokens[$series])) {
3737
throw new TokenNotFoundException('No token found.');

0 commit comments

Comments
 (0)