Extends
lithium\core\Object
Set and get method for query's offset, i.e. which records to get
Parameters
- integer $offset
Returns
integerSource
public function offset($offset = null) {
if ($offset !== null) {
$this->_config['offset'] = intval($offset);
return $this;
}
return $this->_config['offset'];
}