PasswordBroker::__construct()

void __construct(TokenRepositoryInterface $tokens, UserProvider $users) Create a new password broker instance. Parameters TokenRepositoryInterface $tokens UserProvider $users Return Value void

PasswordBroker::__construct()

void __construct(ReminderRepositoryInterface $reminders, UserProviderInterface $users, Mailer $mailer, string $reminderView) Create a new password broker instance. Parameters ReminderRepositoryInterface $reminders UserProviderInterface $users Mailer $mailer string $reminderView Return Value void

PasswordBrokerFactory

PasswordBrokerFactory interface PasswordBrokerFactory (View source) Methods mixed broker(string|null $name = null) Get a password broker instance by name.

PasswordBrokerFactory::broker()

mixed broker(string|null $name = null) Get a password broker instance by name. Parameters string|null $name Return Value mixed

PasswordBrokerManager

PasswordBrokerManager class PasswordBrokerManager implements PasswordBrokerFactory (View source) 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. 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 ca

PasswordBrokerManager::broker()

mixed broker(string|null $name = null) Attempt to get the broker from the local cache. Parameters string|null $name Return Value mixed

PasswordBrokerManager::getDefaultDriver()

string getDefaultDriver() Get the default password broker name. Return Value string

PasswordBrokerManager::setDefaultDriver()

void setDefaultDriver(string $name) Set the default password broker name. Parameters string $name Return Value void

PasswordBrokerManager::__call()

mixed __call(string $method, array $parameters) Dynamically call the default driver instance. Parameters string $method array $parameters Return Value mixed

PasswordBrokerManager::__construct()

void __construct(Application $app) Create a new PasswordBroker manager instance. Parameters Application $app Return Value void