Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3/**
4 * Marker class for search engines that can handle their own pagination, by
5 * reporting in their ISearchResultSet when a next page is available. This
6 * only applies to search{Title,Text} and not to completion search.
7 *
8 * SearchEngine implementations not implementing this interface will have
9 * an over-fetch performed to determine next page availability.
10 *
11 * @stable to implement
12 */
13interface PaginatingSearchEngine {
14}