Merge "Add CollationFa"
[lhc/web/wiklou.git] / includes / search / ResultAugmentor.php
1 <?php
2
3 /**
4 * Augment search results.
5 */
6 interface ResultAugmentor {
7 /**
8 * Produce data to augment search result set.
9 * @param SearchResult $result
10 * @return mixed Data for this result
11 */
12 public function augment( SearchResult $result );
13 }