We do not provide API guarantees

This commit is contained in:
Tim Nagel 2015-03-12 21:47:19 +11:00
parent e796d6179b
commit a8f41fa5ef
3 changed files with 0 additions and 14 deletions

View file

@ -20,8 +20,6 @@ class FantaPaginatorAdapter implements AdapterInterface
* Returns the number of results. * Returns the number of results.
* *
* @return integer The number of results. * @return integer The number of results.
*
* @api
*/ */
public function getNbResults() public function getNbResults()
{ {
@ -32,8 +30,6 @@ class FantaPaginatorAdapter implements AdapterInterface
* Returns Facets. * Returns Facets.
* *
* @return mixed * @return mixed
*
* @api
*/ */
public function getFacets() public function getFacets()
{ {
@ -47,8 +43,6 @@ class FantaPaginatorAdapter implements AdapterInterface
* @param integer $length The length. * @param integer $length The length.
* *
* @return array|\Traversable The slice. * @return array|\Traversable The slice.
*
* @api
*/ */
public function getSlice($offset, $length) public function getSlice($offset, $length)
{ {

View file

@ -8,8 +8,6 @@ interface PaginatorAdapterInterface
* Returns the number of results. * Returns the number of results.
* *
* @return integer The number of results. * @return integer The number of results.
*
* @api
*/ */
public function getTotalHits(); public function getTotalHits();
@ -20,8 +18,6 @@ interface PaginatorAdapterInterface
* @param integer $length The length. * @param integer $length The length.
* *
* @return PartialResultsInterface * @return PartialResultsInterface
*
* @api
*/ */
public function getResults($offset, $length); public function getResults($offset, $length);

View file

@ -8,8 +8,6 @@ interface PartialResultsInterface
* Returns the paginated results. * Returns the paginated results.
* *
* @return array * @return array
*
* @api
*/ */
public function toArray(); public function toArray();
@ -17,8 +15,6 @@ interface PartialResultsInterface
* Returns the number of results. * Returns the number of results.
* *
* @return integer The number of results. * @return integer The number of results.
*
* @api
*/ */
public function getTotalHits(); public function getTotalHits();