コード例 #1
0
ファイル: Order.php プロジェクト: antrampa/crm
 public function __construct()
 {
     parent::__construct();
     $this->items = new ArrayCollection();
 }
コード例 #2
0
ファイル: Order.php プロジェクト: rodolfobandeira/crm
 public function __construct()
 {
     parent::__construct();
     $this->items = new ArrayCollection();
     $this->relatedCalls = new ArrayCollection();
     $this->relatedEmails = new ArrayCollection();
 }