コード例 #1
0
ファイル: Experience.php プロジェクト: messi1983/messi-repo
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->technos = new \Doctrine\Common\Collections\ArrayCollection();
     $this->taches = new \Doctrine\Common\Collections\ArrayCollection();
     $this->dateCreation = new \Datetime();
 }
コード例 #2
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
 }
コード例 #3
0
ファイル: Tache.php プロジェクト: messi1983/messi-repo
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->ordre = 0;
     $this->soustaches = new \Doctrine\Common\Collections\ArrayCollection();
 }
コード例 #4
0
ファイル: Theatre.php プロジェクト: messi1983/messi-repo
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->membres = new \Doctrine\Common\Collections\ArrayCollection();
 }