Completed
Push — master ( 47c098...6c95d6 )
by smiley
02:23
created

DeleteAbstract::orWhere()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
/**
3
 *
4
 * @filesource   DeleteAbstract.php
5
 * @created      03.06.2017
6
 * @package      chillerlan\Database\Query\Dialects
7
 * @author       Smiley <[email protected]>
8
 * @copyright    2017 Smiley
9
 * @license      MIT
10
 */
11
12
namespace chillerlan\Database\Query;
13
14
/**
15
 * Class DeleteAbstract
16
 */
17
abstract class DeleteAbstract extends StatementAbstract implements DeleteInterface{
18
19
	public function from(){
20
		// TODO: Implement from() method.
21
	}
22
23
	public function sql():string{
24
		// TODO: Implement sql() method.
25
	}
26
27
	public function where(){
28
		// TODO: Implement where() method.
29
	}
30
31
	public function orWhere(){
32
		// TODO: Implement orWhere() method.
33
	}
34
}
35