示例#1
0
 /**
  * {@inheritdoc}
  */
 public function __construct()
 {
     parent::__construct();
     $this->carts = new ArrayCollection();
     $this->orders = new ArrayCollection();
 }
示例#2
0
文件: Customer.php 项目: abipit/crm
 /**
  * {@inheritdoc}
  */
 public function __construct()
 {
     parent::__construct();
     $this->carts = new ArrayCollection();
     $this->orders = new ArrayCollection();
     $this->newsletterSubscribers = new ArrayCollection();
 }