TransactionBeginning::__construct()

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

TransactionCommitted::__construct()

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

TransactionRolledBack

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

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.

TokenRepositoryInterface::create()

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

TokenRepositoryInterface::delete()

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

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

TokenGuard::setUser()

$this setUser(Authenticatable $user) Set the current user. Parameters Authenticatable $user Return Value $this

TokenGuard::user()

Authenticatable|null user() Get the currently authenticated user. Return Value Authenticatable|null