| 1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Created by PhpStorm.
- * Author: 芸众商城 www.yunzshop.com
- * Date: 2017/4/11
- * Time: 下午3:37
- */
- namespace app\common\events\order;
- use app\common\events\Event;
- use Illuminate\Support\Collection;
- class CreatingOrder extends Event
- {
- private $memberCarts;
- public function __construct(Collection $memberCarts)
- {
- $this->memberCarts = $memberCarts;
- }
- public function getMemberCarts(){
- return $this->memberCarts;
- }
- }
|