Skip to content

Commit a8f41fa

Browse files
committed
We do not provide API guarantees
1 parent e796d61 commit a8f41fa

File tree

3 files changed

+0
-14
lines changed

3 files changed

+0
-14
lines changed

Paginator/FantaPaginatorAdapter.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ public function __construct(PaginatorAdapterInterface $adapter)
2020
* Returns the number of results.
2121
*
2222
* @return integer The number of results.
23-
*
24-
* @api
2523
*/
2624
public function getNbResults()
2725
{
@@ -32,8 +30,6 @@ public function getNbResults()
3230
* Returns Facets.
3331
*
3432
* @return mixed
35-
*
36-
* @api
3733
*/
3834
public function getFacets()
3935
{
@@ -47,8 +43,6 @@ public function getFacets()
4743
* @param integer $length The length.
4844
*
4945
* @return array|\Traversable The slice.
50-
*
51-
* @api
5246
*/
5347
public function getSlice($offset, $length)
5448
{

Paginator/PaginatorAdapterInterface.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ interface PaginatorAdapterInterface
88
* Returns the number of results.
99
*
1010
* @return integer The number of results.
11-
*
12-
* @api
1311
*/
1412
public function getTotalHits();
1513

@@ -20,8 +18,6 @@ public function getTotalHits();
2018
* @param integer $length The length.
2119
*
2220
* @return PartialResultsInterface
23-
*
24-
* @api
2521
*/
2622
public function getResults($offset, $length);
2723

Paginator/PartialResultsInterface.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,13 @@ interface PartialResultsInterface
88
* Returns the paginated results.
99
*
1010
* @return array
11-
*
12-
* @api
1311
*/
1412
public function toArray();
1513

1614
/**
1715
* Returns the number of results.
1816
*
1917
* @return integer The number of results.
20-
*
21-
* @api
2218
*/
2319
public function getTotalHits();
2420

0 commit comments

Comments
 (0)