Auth_OpenID_SQLStore::reset PHP Method

reset() public method

Resets the store by removing all records from the store's tables.
public reset ( )
    function reset()
    {
        $this->connection->query(sprintf("DELETE FROM %s", $this->associations_table_name));
        $this->connection->query(sprintf("DELETE FROM %s", $this->nonces_table_name));
    }