DatabaseTokenRepository
class DatabaseTokenRepository implements TokenRepositoryInterface (View source)
Methods
void | __construct(ConnectionInterface $connection, string $table, string $hashKey, int $expires = 60) Create a new token repository instance. | |
string | create(CanResetPassword $user) Create a new token record. | |
bool | exists(CanResetPassword $user, string $token) Determine if a token record exists and is valid. | |
void | delete(string $token) Delete a token record by token. | |
void | deleteExpired() Delete expired tokens. | |
string | createNewToken() Create a new token for the user. | |
ConnectionInterface | getConnection() Get the database connection instance. |
Please login to continue.