Passed
Push — master ( b78f9d...d72e0c )
by Berend
19:38 queued 08:50
created

ColumnProperty

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 7
c 1
b 0
f 0
dl 0
loc 8
ccs 0
cts 0
cp 0
1
<?php
2
3
namespace miBadger\ActiveRecord;
4
5
use miBadger\Enum\Enum;
6
7
class ColumnProperty extends Enum
8
{
9
	const NONE = 0;
10
	const UNIQUE = 1;
11
	const NOT_NULL = 2;
12
	const IMMUTABLE = 4;
13
	const AUTO_INCREMENT = 8;
14
	const PRIMARY_KEY = 16;
15
}