aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/DeleteQueryTypeQueryComponent.php
blob: 328c57b317b6082348ad4f2e8ac84ce87af45d20 (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";
	}
}