Merge "WebStart: Avoid DB or uselang for nonwrite-api-promise-error message"
[lhc/web/wiklou.git] / includes / search / ResultSetAugmentor.php
1 <?php
2
3 /**
4 * Augment search results.
5 */
6 interface ResultSetAugmentor {
7 /**
8 * Produce data to augment search result set.
9 * @param ISearchResultSet $resultSet
10 * @return array Data for all results
11 */
12 public function augmentAll( ISearchResultSet $resultSet );
13 }