aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/SelectQueryTypeQueryComponent.php
blob: 44bf7309517f4d8ed0875af9ce141d8e5046272b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
/**
 * @class SelectQueryTypeQueryComponent
 * A select query.
 * @author Curverider Ltd
 * @see Query
 */
class SelectQueryTypeQueryComponent extends QueryTypeQueryComponent
{
	function __construct()
	{
		$this->query_type = "SELECT";
	}
}