Gdn_DatabaseStructure::reset PHP Method

reset() public method

Reset the internal state of this object so that it can be reused.
public reset ( ) : Gdn_DatabaseStructure
return Gdn_DatabaseStructure $this
    public function reset()
    {
        $this->_CharacterEncoding = '';
        $this->_Columns = array();
        $this->_ExistingColumns = null;
        $this->_TableExists = null;
        $this->_TableName = '';
        $this->_TableStorageEngine = null;
        return $this;
    }