13 lines
411 B
PHP
13 lines
411 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Marker class for search engines that can handle their own pagination, by
|
||
|
|
* reporting in their SearchResultSet when a next page is available. This
|
||
|
|
* only applies to search{Title,Text} and not to completion search.
|
||
|
|
*
|
||
|
|
* SearchEngine implementations not implementing this interface will have
|
||
|
|
* an over-fetch performed to determine next page availability.
|
||
|
|
*/
|
||
|
|
interface PaginatingSearchEngine {
|
||
|
|
}
|