UserSubscribe.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\subscribes;
  12. /**
  13. * 用户事件
  14. * Class UserSubscribe
  15. * @package crmeb\subscribes
  16. */
  17. class UserSubscribe
  18. {
  19. public function handle()
  20. {
  21. }
  22. /**
  23. * 管理员后台给用户添加金额
  24. * @param $event
  25. */
  26. public function onAdminAddMoney($event)
  27. {
  28. list($user, $money) = $event;
  29. //$user 用户信息
  30. //$money 添加的金额
  31. }
  32. }