ORM::limit PHP Method

limit() public method

Add a LIMIT to the query
public limit ( $limit )
    public function limit($limit)
    {
        $this->_limit = $limit;
        return $this;
    }
ORM