CheckPartner.php 677 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace App\Events;
  3. use Illuminate\Foundation\Events\Dispatchable;
  4. use Illuminate\Broadcasting\InteractsWithSockets;
  5. /**
  6. * 审核卡片事件
  7. * Class CheckPartner
  8. * @package App\Events
  9. */
  10. class CheckPartner
  11. {
  12. use Dispatchable;
  13. use InteractsWithSockets;
  14. public $uid;
  15. public $field;
  16. public $check;
  17. public $stackGlobalConfig;
  18. /**
  19. * Create a new event instance.
  20. *
  21. * @param int $uid
  22. * @param string $field
  23. * @param int $check
  24. */
  25. public function __construct(int $uid, string $field, int $check)
  26. {
  27. $this->uid = $uid;
  28. $this->field = $field;
  29. $this->check = $check;
  30. }
  31. }