aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/InsertQueryTypeQueryComponent.php
blob: 17dc2f62fe5e12614a49239971e8e38f0f7fca18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
/**
 * @class InsertQueryTypeQueryComponent
 * An insert query.
 * @see Query
 */
class InsertQueryTypeQueryComponent extends QueryTypeQueryComponent
{
	function __construct()
	{
		$this->query_type = "INSERT INTO";
	}
}