Completed
Push — master ( c5cc72...7c6f56 )
by Jean-Christophe
02:02
created

Column   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 10
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Annotation Column
4
 * @author jc
5
 * @version 1.0.0.1
6
 * @package annotations
7
 * @Target("property")
8
 */
9
class Column extends \BaseAnnotation{
10
	public $name;
11
	public $nullable=false;
12
13
	public function checkConstraints($target){
14
		/*if(is_null($this->name))
15
			throw new \Exception("L'attribut name est obligatoire pour une annotation de type Column");
16
			*/
17
	}
18
}
19