aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/UpdateQueryTypeQueryComponent.php
blob: 226b14be773e1b7a99199662fdae98b599f639e8 (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";
	}
}