Merge "Revert "Use display name in category page subheadings if provided""
[lhc/web/wiklou.git] / includes / search / ResultSetAugmentor.php
1 <?php
2
3 /**
4 * Augment search results.
5 *
6 */
7 interface ResultSetAugmentor {
8 /**
9 * Produce data to augment search result set.
10 * @param SearchResultSet $resultSet
11 * @return array Data for all results
12 */
13 public function augmentAll( SearchResultSet $resultSet );
14 }