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

InsertAbstract::sql()   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   InsertAbstract.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 InsertAbstract
16
 */
17
abstract class InsertAbstract extends StatementAbstract implements InsertInterface{
18
19
	public function into(){
20
		// TODO: Implement into() method.
21
	}
22
23
	public function values(){
24
		// TODO: Implement values() method.
25
	}
26
27
	public function sql():string{
28
		// TODO: Implement sql() method.
29
	}
30
}
31