AuthenticationBackend
in package
implements
AuthenticationContract
Uses
Containable
AbstractYes
Base class for other Authentication backend to inherit.
You have access to the application container via $this->context
Table of Contents
Interfaces
- AuthenticationContract
- Authentication contract.
Properties
- $context : ContainerInterface|Container|null
- Application container context
- $limitServices : array<string|int, mixed>
- limit the services this authentication backend can run on
Methods
- __construct() : mixed
- afterRun() : mixed
- Hook to run after the authentication has been run
- beforeRun() : mixed
- Hook to run before the authentication has been run
- getOrDefault() : mixed
- Get a value from the container or return a default value
- getOrFail() : mixed
- getSilently() : mixed
- set() : void
- Set a value in the container
- contextHas() : bool
Properties
$context
Application container context
public
ContainerInterface|Container|null
$context
$limitServices
limit the services this authentication backend can run on
public
array<string|int, mixed>
$limitServices
= []
Methods
__construct()
public
__construct([ContainerInterface|Container|null $context = null ]) : mixed
Parameters
- $context : ContainerInterface|Container|null = null
afterRun()
Hook to run after the authentication has been run
public
afterRun(Request $request) : mixed
Parameters
- $request : Request
beforeRun()
Hook to run before the authentication has been run
public
beforeRun(Request $request) : mixed
Parameters
- $request : Request
getOrDefault()
Get a value from the container or return a default value
public
getOrDefault(string $key, mixed $default) : mixed
Parameters
- $key : string
- $default : mixed
getOrFail()
public
getOrFail(mixed $key) : mixed
Parameters
- $key : mixed
Tags
getSilently()
public
getSilently(mixed $key) : mixed
Parameters
- $key : mixed
set()
Set a value in the container
public
set(string $name, mixed $value) : void
Parameters
- $name : string
- $value : mixed
contextHas()
protected
contextHas(string $key) : bool
Parameters
- $key : string