aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/QueryTypeQueryComponent.php
blob: 024fad036c02195a8174904e2e08c3826f89ea6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
/**
 * @class QueryTypeQueryComponent
 * What type of query is this?
 * @author Curverider Ltd
 * @see Query
 */
abstract class QueryTypeQueryComponent extends QueryComponent
{
	function __toString()
	{
		return $this->query_type;
	}
}