repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Localisation updates from https://translatewiki.net.
[mediawiki.git]
/
includes
/
search
/
ResultAugmentor.php
blob
ec43e92123ad973a37454963ece70c6567e8a45d
1
<
?php
2
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
12
*/
13
public function
augment
(
SearchResult
$result
);
14
}