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
Merge "Special:Upload should not crash on failing previews"
[mediawiki.git]
/
includes
/
search
/
ResultAugmentor.php
blob
df58e71a57f841e4bb887a063329af2df89084ca
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
}