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

UpdateAbstract   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 4
lcom 0
cbo 1
dl 0
loc 18
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A sql() 0 3 1
A table() 0 3 1
A where() 0 3 1
A orWhere() 0 3 1
1
<?php
2
/**
3
 *
4
 * @filesource   UpdateAbstract.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 UpdateAbstract
16
 */
17
abstract class UpdateAbstract extends StatementAbstract implements UpdateInterface{
18
19
	public function sql():string{
20
		// TODO: Implement sql() method.
21
	}
22
23
	public function table(){
24
		// TODO: Implement table() 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