コード例 #1
0
ファイル: BlogEntry.php プロジェクト: richardlawson/gcblog
 public function __construct(array $options = null)
 {
     $this->postDate = new \DateTime();
     $this->comments = new ArrayCollection();
     parent::__construct($options);
 }
コード例 #2
0
ファイル: Category.php プロジェクト: richardlawson/gcblog
 public function __construct(array $options = null)
 {
     $this->blogEntries = new ArrayCollection();
     parent::__construct($options);
 }