AutoCheckCouponListen.php 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace crmeb\listens;
  12. use app\common\repositories\community\CommunityTopicRepository;
  13. use app\common\repositories\store\coupon\StoreCouponUserRepository;
  14. use crmeb\interfaces\ListenerInterface;
  15. use crmeb\services\TimerService;
  16. class AutoCheckCouponListen extends TimerService implements ListenerInterface
  17. {
  18. public function handle($event): void
  19. {
  20. $this->tick(1000 * 30, function () {
  21. app()->make(StoreCouponUserRepository::class)->failCoupon();
  22. });
  23. }
  24. }