コード例 #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();
 }