コード例 #1
0
ファイル: Entry.php プロジェクト: uglybob/Project-Rat-Mesh
 public function __construct($user)
 {
     $this->tags = new \Doctrine\Common\Collections\ArrayCollection();
     parent::__construct($user);
 }
コード例 #2
0
ファイル: PrivateNamed.php プロジェクト: uglybob/bh.net
 public function __construct(User $user, $name)
 {
     parent::__construct($user);
     $this->name = $name;
 }