예제 #1
0
파일: Photo.php 프로젝트: janmarek/Neuron
 public function __construct(array $values = array())
 {
     parent::__construct($values);
     $this->comments = new \Neuron\Model\Comment\CommentGroup();
 }
예제 #2
0
파일: Comment.php 프로젝트: janmarek/Neuron
 public function __construct(array $values = array())
 {
     parent::__construct($values);
     $this->created = new DateTime();
 }
예제 #3
0
파일: Gallery.php 프로젝트: janmarek/Neuron
 public function __construct(array $values = array())
 {
     parent::__construct($values);
     $this->photos = new \Doctrine\Common\Collections\ArrayCollection();
 }
예제 #4
0
 public function __construct(array $values = array())
 {
     parent::__construct($values);
     $this->comments = new ArrayCollection();
 }