WechatController.php 316 B

1234567891011121314151617181920
  1. <?php
  2. namespace frontend\controllers;
  3. use common\library\WeChat;
  4. use Yii;
  5. use yii\web\Controller;
  6. /**
  7. * Site controller
  8. */
  9. class WechatController extends Controller
  10. {
  11. /**
  12. * @inheritdoc
  13. */
  14. public function actionIndex()
  15. {
  16. $wechat = new WeChat();
  17. $wechat->checkToken();
  18. }
  19. }