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