aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/DeleteQueryTypeQueryComponent.php
blob: a697306d45f6e60a7dd0f30a9eca5e380ba7aa5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/**
 * Delete query
 *
 * @todo probably remove.
 * @access private
 * @package Elgg.Core
 * @subpackage Unimplemented
 */
class DeleteQueryTypeQueryComponent extends QueryTypeQueryComponent
{
	function __construct()
	{
		$this->query_type = "DELETE FROM";
	}
}