Granada\ORM::limit PHP Method

limit() public method

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