summaryrefslogtreecommitdiff
blob: a7a59d495ff377445d954f4c36706cb1a9b0270c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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();
}