PHP Class App\Http\Controllers\ClientAuth\AuthController

Inheritance: extends app\http\controllers\Controller, use trait Illuminate\Foundation\Auth\AuthenticatesUsers
Show file Open project: hillelcoren/invoice-ninja

Protected Properties

Property Type Description
$guard string
$redirectTo string

Public Methods

Method Description
getSessionExpired ( ) : mixed
showLoginForm ( ) : mixed

Protected Methods

Method Description
getCredentials ( Illuminate\Http\Request $request ) : array Get the needed authorization credentials from the request.
validateLogin ( Illuminate\Http\Request $request ) : void Validate the user login request.

Method Details

getCredentials() protected method

Get the needed authorization credentials from the request.
protected getCredentials ( Illuminate\Http\Request $request ) : array
$request Illuminate\Http\Request
return array

getSessionExpired() public method

public getSessionExpired ( ) : mixed
return mixed

showLoginForm() public method

public showLoginForm ( ) : mixed
return mixed

validateLogin() protected method

Validate the user login request.
protected validateLogin ( Illuminate\Http\Request $request ) : void
$request Illuminate\Http\Request
return void

Property Details

$guard protected property

protected string $guard
return string

$redirectTo protected property

protected string $redirectTo
return string