Cake\ElasticSearch\Query::limit PHP Method

limit() public method

This sets the size option for the Elastic Search query.
public limit ( integer $limit )
$limit integer The number of documents to return.
    public function limit($limit)
    {
        $this->_parts['limit'] = (int) $limit;
        return $this;
    }