Skip to content

Commit 1819a63

Browse files
committed
docs: add doc comment
1 parent 3b5d6eb commit 1819a63

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Authentication/Authenticators/Session.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,17 @@ class Session implements AuthenticatorInterface
2727
*/
2828
protected UserModel $provider;
2929

30+
/**
31+
* The user logged in
32+
*/
3033
protected ?User $user = null;
31-
protected LoginModel $loginModel;
3234

3335
/**
3436
* Should the user be remembered?
3537
*/
3638
protected bool $shouldRemember = false;
3739

40+
protected LoginModel $loginModel;
3841
protected RememberModel $rememberModel;
3942

4043
public function __construct(UserModel $provider)

0 commit comments

Comments
 (0)