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