PetWeChatEvent.php 387 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: yunzhong
  5. * Date: 2019/12/6
  6. * Time: 9:50
  7. */
  8. namespace app\common\events;
  9. class PetWeChatEvent extends \app\common\events\Event
  10. {
  11. /**
  12. * @var 用户信息
  13. */
  14. public $Info;
  15. function __construct($Info)
  16. {
  17. $this->info = $Info;
  18. }
  19. public function getInfo()
  20. {
  21. return $this->info;
  22. }
  23. }