Habari\Query::offset PHP Method

offset() public method

Sets the OFFSET
public offset ( integer $value ) : Query
$value integer The OFFSET
return Query Returns $this for fluid interface
    public function offset($value)
    {
        $this->offset = is_numeric($value) ? intval($value) : null;
        return $this;
    }