CreatingOrder.php 476 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * Author: 芸众商城 www.yunzshop.com
  5. * Date: 2017/4/11
  6. * Time: 下午3:37
  7. */
  8. namespace app\common\events\order;
  9. use app\common\events\Event;
  10. use Illuminate\Support\Collection;
  11. class CreatingOrder extends Event
  12. {
  13. private $memberCarts;
  14. public function __construct(Collection $memberCarts)
  15. {
  16. $this->memberCarts = $memberCarts;
  17. }
  18. public function getMemberCarts(){
  19. return $this->memberCarts;
  20. }
  21. }