NukeViet\Core\Database::offset PHP Method

offset() public method

sets the offset for the query.
public offset ( integer $offset ) : Database
$offset integer
return Database $this
    public function offset($offset)
    {
        $this->_offset = (int) $offset;
        return $this;
    }