TransactionCommitted

TransactionCommitted class TransactionCommitted extends ConnectionEvent (View source) Properties string $connectionName The name of the connection. from ConnectionEvent Connection $connection The database connection instance. from ConnectionEvent

TransactionBeginning::__construct()

void __construct(Connection $connection) Create a new event instance. Parameters Connection $connection Return Value void

TransactionBeginning

TransactionBeginning class TransactionBeginning extends ConnectionEvent (View source) Properties string $connectionName The name of the connection. from ConnectionEvent Connection $connection The database connection instance. from ConnectionEvent

TokenRepositoryInterface::exists()

bool exists(CanResetPassword $user, string $token) Determine if a token record exists and is valid. Parameters CanResetPassword $user string $token Return Value bool

TokenRepositoryInterface::deleteExpired()

void deleteExpired() Delete expired tokens. Return Value void

TokenRepositoryInterface::delete()

void delete(string $token) Delete a token record. Parameters string $token Return Value void

TokenRepositoryInterface::create()

string create(CanResetPassword $user) Create a new token. Parameters CanResetPassword $user Return Value string

TokenRepositoryInterface

TokenRepositoryInterface interface TokenRepositoryInterface (View source) Methods string create(CanResetPassword $user) Create a new token. bool exists(CanResetPassword $user, string $token) Determine if a token record exists and is valid. void delete(string $token) Delete a token record. void deleteExpired() Delete expired tokens.

TokenMismatchException

TokenMismatchException class TokenMismatchException extends Exception (View source)

TokenGuard::__construct()

void __construct(UserProvider $provider, Request $request) Create a new authentication guard. Parameters UserProvider $provider Request $request Return Value void