FOSElasticaBundle/Paginator/PaginatorAdapterInterface.php
2013-03-27 13:44:06 -04:00

28 lines
519 B
PHP

<?php
namespace FOS\ElasticaBundle\Paginator;
interface PaginatorAdapterInterface
{
/**
* Returns the number of results.
*
* @return integer The number of results.
*
* @api
*/
function getTotalHits();
/**
* Returns an slice of the results.
*
* @param integer $offset The offset.
* @param integer $length The length.
*
* @return FOS\ElasticaBundle\Paginator\PartialResults
*
* @api
*/
function getResults($offset, $length);
}