Bump and prep 1.34.1
[lhc/web/wiklou.git] / includes / search / PaginatingSearchEngine.php
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 interface PaginatingSearchEngine {
12 }