コード例 #1
0
ファイル: Thread.php プロジェクト: mattvaadi/hris
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->uid = uniqid();
     $this->datecreated = new \DateTime('now');
     $this->messages = new ArrayCollection();
 }
コード例 #2
0
ファイル: Thread.php プロジェクト: Alexandre-T/jeu-de-role
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->messages = new ArrayCollection();
     $this->metadata = new ArrayCollection();
 }