Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / search / ResultAugmentor.php
blobec43e92123ad973a37454963ece70c6567e8a45d
1 <?php
3 /**
4 * Augment search results.
5 * @stable to implement
6 */
7 interface ResultAugmentor {
8 /**
9 * Produce data to augment search result set.
10 * @param SearchResult $result
11 * @return mixed Data for this result
13 public function augment( SearchResult $result );