class PasswordBrokerManager implements PasswordBrokerFactory mixin PasswordBroker

Properties

protected Application $app

The application instance.

protected array $brokers

The array of created "drivers".

Methods

void
__construct(Application $app)

Create a new PasswordBroker manager instance.

mixed
broker(string|null $name = null)

Attempt to get the broker from the local cache.

resolve(string $name)

Resolve the given broker.

createTokenRepository(array $config)

Create a token repository instance based on the given configuration.

array
getConfig(string $name)

Get the password broker configuration.

string
getDefaultDriver()

Get the default password broker name.

void
setDefaultDriver(string $name)

Set the default password broker name.

mixed
__call(string $method, array $parameters)

Dynamically call the default driver instance.

Details

at line 34
void __construct(Application $app)

Create a new PasswordBroker manager instance.

Parameters

Application $app

Return Value

void

at line 45
mixed broker(string|null $name = null)

Attempt to get the broker from the local cache.

Parameters

string|null $name

Return Value

mixed

at line 62
protected PasswordBroker resolve(string $name)

Resolve the given broker.

Parameters

string $name

Return Value

PasswordBroker

Exceptions

InvalidArgumentException

at line 85
protected TokenRepositoryInterface createTokenRepository(array $config)

Create a token repository instance based on the given configuration.

Parameters

array $config

Return Value

TokenRepositoryInterface

at line 110
protected array getConfig(string $name)

Get the password broker configuration.

Parameters

string $name

Return Value

array

at line 120
string getDefaultDriver()

Get the default password broker name.

Return Value

string

at line 131
void setDefaultDriver(string $name)

Set the default password broker name.

Parameters

string $name

Return Value

void

at line 143
mixed __call(string $method, array $parameters)

Dynamically call the default driver instance.

Parameters

string $method
array $parameters

Return Value

mixed