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
/
ResultSetAugmentor.php
blob
e2d79a9c4ef99f3438801af13f94e3e96f223450
1
<
?php
2
3
/**
4
* Augment search results.
5
*/
6
interface
ResultSetAugmentor
{
7
/**
8
* Produce data to augment search result set.
9
* @param SearchResultSet $resultSet
10
* @return array Data for all results
11
*/
12
public function
augmentAll
(
SearchResultSet
$resultSet
);
13
}