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