You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
447 B

<?php
/**
* @copyright ©2018 Lu Wei
* @author Lu Wei
* @link http://www.luweiss.com/
* Created by IntelliJ IDEA
* Date Time: 2019/1/11 10:54
*/
namespace app\controllers;
class CustomServiceController extends Controller
{
public function actionValidateToken($store_id, $token, $mch_id = null, $user_id = null)
{
return [
'code' => 0,
'msg' => 'success',
];
}
}