예제 #1
0
파일: Customer.php 프로젝트: phox/xsale
 /**
  * Constructor
  */
 public function __construct(array $data = null)
 {
     parent::__construct($data);
     $this->orders = new \Doctrine\Common\Collections\ArrayCollection();
 }
 public function __construct($data)
 {
     parent::__construct($data);
     $this->setTsAdd(time());
     $this->setTsMod(time());
 }