예제 #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();
 }