for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Annotation Column
* @author jc
* @version 1.0.0.1
* @package annotations
* @Target("property")
*/
class Column extends \BaseAnnotation{
public $name;
public $nullable=false;
public function checkConstraints($target){
/*if(is_null($this->name))
throw new \Exception("L'attribut name est obligatoire pour une annotation de type Column");
}