AddCartEvent.php 465 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: 芸众网
  5. * Date: 2019/4/29
  6. * Time: 9:21
  7. */
  8. namespace app\common\events\cart;
  9. use app\common\events\Event;
  10. class AddCartEvent extends Event
  11. {
  12. protected $cartModel;
  13. public function __construct($cartModel)
  14. {
  15. $this->cartModel = $cartModel;
  16. }
  17. /**
  18. * (监听者)获取购物车model
  19. * @return mixed
  20. */
  21. public function getCartModel(){
  22. return $this->cartModel;
  23. }
  24. }