trait Illuminate / Foundation / Testing / Concerns / InteractsWithAuthentication
You are viewing an older version of the documentation. For the latest, please visit master documentation.

InteractsWithAuthentication

Methods

public

actingAs ( Authenticatable $user , $guard ) : $this

Set the currently logged in user for the application.

Parameters

public

be ( Authenticatable $user , $guard ) : $this

Set the currently logged in user for the application.

Parameters

public

assertAuthenticated ( $guard ) : $this

Assert that the user is authenticated.

Parameters

  • $guard string|null
public

assertGuest ( $guard ) : $this

Assert that the user is not authenticated.

Parameters

  • $guard string|null
protected

isAuthenticated ( $guard ) : bool

Return true if the user is authenticated, false otherwise.

Parameters

  • $guard string|null
public

assertAuthenticatedAs ( $user , $guard ) : $this

Assert that the user is authenticated as the given user.

Parameters

public

assertCredentials ( array $credentials , $guard ) : $this

Assert that the given credentials are valid.

Parameters

  • $credentials array
  • $guard string|null
public

assertInvalidCredentials ( array $credentials , $guard ) : $this

Assert that the given credentials are invalid.

Parameters

  • $credentials array
  • $guard string|null
protected

hasCredentials ( array $credentials , $guard ) : bool

Return true if the credentials are valid, false otherwise.

Parameters

  • $credentials array
  • $guard string|null