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