lithium\data\model\Query::map PHP Method

map() public method

Generates a schema map of the query's result set, where the keys are aliases, and the values are arrays of field names.
public map ( array $map = null ) : array
$map array
return array
    public function map($map = null)
    {
        if ($map !== null) {
            $this->_map = $map;
            return $this;
        }
        return $this->_map;
    }