MemberDelEvent.php 407 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2019/1/3
  6. * Time: 14:34
  7. */
  8. namespace app\common\events\member;
  9. use app\common\events\Event;
  10. class MemberDelEvent extends Event
  11. {
  12. protected $uid;
  13. public function __construct($uid)
  14. {
  15. $this->uid = $uid;
  16. }
  17. /**
  18. * @return mixed
  19. */
  20. public function getUid()
  21. {
  22. return $this->uid;
  23. }
  24. }