LazyRecord\TableParser\BaseTableParser::getTableSchemaMap PHP Method

getTableSchemaMap() public method

This is not used right now.
public getTableSchemaMap ( )
    public function getTableSchemaMap()
    {
        $tableSchemas = array();
        // Parse existing table and try to find the schema
        $tables = $this->getTables();
        foreach ($tables as $table) {
            $tableSchemas[$table] = $this->reverseTableSchema($table);
        }
        return $tableSchemas;
    }