summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/webservices/QueryAggregatorAware.php
blob: 7806e806519273fd7467ed063cc16b1c61f43534 (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+
 */

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