Fixed type on getUserId in LoginAttemptInfo.

This commit is contained in:
flash 2023-07-22 17:27:42 +00:00
parent 6e3023a772
commit 392881c0d8

View file

@ -29,7 +29,7 @@ class LoginAttemptInfo {
return $this->userId !== null;
}
public function getUserId(): string {
public function getUserId(): ?string {
return $this->userId;
}