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