LazyRecord\BaseModel::select PHP Method

select() public method

public select ( $sels )
    public function select($sels)
    {
        if (is_array($sels)) {
            $this->selected = $sels;
        } else {
            $this->selected = func_get_args();
        }
        return $this;
    }