示例#1
0
文件: Order.php 项目: nakashu/Sylius
 public function __construct()
 {
     parent::__construct();
     $this->payments = new ArrayCollection();
     $this->shipments = new ArrayCollection();
     $this->promotions = new ArrayCollection();
 }
示例#2
0
文件: Cart.php 项目: aleherse/Sylius
 /**
  * {@inheritdoc}
  */
 public function getIdentifier()
 {
     return parent::getId();
 }
示例#3
0
 public function __construct()
 {
     parent::__construct();
     $this->incrementExpiresAt();
 }