summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/webservices/QueryAggregatorAware.php
blob: c5c0e9a59c913e1c3a032d1a42f119290f710776 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
/**
 * Web service utility interface.
 *
 * @file
 * @author Niklas Laxström
 * @license GPL-2.0-or-later
 */

/**
 * Interface for classes that want to use QueryAggregator.
 * @since 2015.12
 */
interface QueryAggregatorAware {
	public function setQueryAggregator( QueryAggregator $aggregator );
	public function populateQueries();
}