Extends
lithium\core\Object
Set and get method for the `Query` group config setting.
Parameters
- string $group New group config setting.
Returns
mixed Current group config setting.Source
public function group($group = null) {
if ($group) {
$this->_config['group'] = $group;
return $this;
}
if ($group === false) {
$this->_config['group'] = null;
return $this;
}
return $this->_config['group'];
}