Habari\Query::limit PHP Method

limit() public method

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