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

CreateTable   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A fieldspec() 0 13 1
1
<?php
2
/**
3
 *
4
 * @filesource   CreateTable.php
5
 * @created      03.06.2017
6
 * @package      chillerlan\Database\Query\Dialects\Postgres
7
 * @author       Smiley <[email protected]>
8
 * @copyright    2017 Smiley
9
 * @license      MIT
10
 */
11
12
namespace chillerlan\Database\Query\Dialects\Postgres;
13
14
use chillerlan\Database\Query\CreateTableAbstract;
15
16
/**
17
 * Class CreateTable
18
 */
19
class CreateTable extends CreateTableAbstract{
20
21
	protected function fieldspec(
22
		string $name,
23
		string $type,
24
		$length = null,
25
		string $attribute = null,
26
		string $collation = null,
27
		bool $isNull = false,
28
		string $defaultType = null,
29
		$defaultValue = null,
30
		string $extra = null
31
	){
32
		// TODO: Implement fieldspec() method.
33
	}
34
}
35