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