示例#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();
 }