コード例 #1
0
ファイル: Employee.php プロジェクト: 0TshELn1ck/CheTheatre
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->roles = new \Doctrine\Common\Collections\ArrayCollection();
     $this->galleryHasMedia = new \Doctrine\Common\Collections\ArrayCollection();
 }
コード例 #2
0
ファイル: Tag.php プロジェクト: 0TshELn1ck/CheTheatre
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->posts = new \Doctrine\Common\Collections\ArrayCollection();
 }