MatchController.php 391 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * 匹配模块
  4. * @author wesmiler
  5. */
  6. namespace app\weixin\controller;
  7. class MatchController extends BaseController
  8. {
  9. /**
  10. * 单身推荐
  11. * @return mixed
  12. */
  13. public function index(){
  14. return $this->fetch();
  15. }
  16. /**
  17. * 每日推荐匹配
  18. * @return mixed
  19. */
  20. public function hearts(){
  21. return $this->fetch();
  22. }
  23. }
  24. ?>