Introduce Auth::setUser()

This commit is contained in:
Eric Lippmann 2020-03-02 14:15:39 +01:00
parent 3a66b0a950
commit 990a5e4d61
1 changed files with 17 additions and 0 deletions

View File

@ -256,6 +256,23 @@ class Auth
return $this->user;
}
/**
* Set the authenticated user
*
* Note that this method just sets the authenticated user and thus bypasses our default authentication process in
* {@link setAuthenticated()}.
*
* @param User $user
*
* @return $this
*/
public function setUser(User $user)
{
$this->user = $user;
return $this;
}
/**
* Try to authenticate the user with the current session
*