Granada\ORM::limit PHP Méthode

limit() public méthode

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