예제 #1
0
파일: Movie.php 프로젝트: jwoods/CE_27
 public function __construct()
 {
     parent::__construct();
 }
예제 #2
0
파일: Post.php 프로젝트: jwoods/CE_27
 public function __construct()
 {
     parent::__construct();
     $this->tags = new ArrayCollection();
 }
예제 #3
0
파일: Draft.php 프로젝트: jwoods/CE_27
 public function __construct()
 {
     parent::__construct();
     $this->backups = new ArrayCollection();
     $this->notes = new ArrayCollection();
 }