IdentityStore
interface IdentityStore (View source)
Represents an authentication handler that can have identities logged into & out of it.
For example, SessionAuthenticationHandler is an IdentityStore (as we can write a new member to it) but BasicAuthAuthenticationHandler is not (as it's up to the browser to handle log-in / log-out)
Methods
                    public                                                                            
                
                    logIn(Member $member, bool $persistent = false, HTTPRequest $request = null)
        
                                            
                
            Log the given member into this identity store.
Details
        
                            
    logIn(Member $member, bool $persistent = false, HTTPRequest $request = null)
        
    
    Log the given member into this identity store.
        
                            
    logOut(HTTPRequest $request = null)
        
    
    Log any logged-in member out of this identity store.