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.
25 lines
445 B
25 lines
445 B
<?php
|
|
|
|
namespace app\api\controller\wxapp;
|
|
|
|
use app\api\controller\Controller;
|
|
|
|
/**
|
|
* form_id 管理 (已废弃)
|
|
* Class Formid
|
|
* @package app\api\controller\wxapp
|
|
*/
|
|
class Formid extends Controller
|
|
{
|
|
/**
|
|
* 新增form_id
|
|
* (因微信模板消息已下线,所以formId取消不再收集)
|
|
* @param $formId
|
|
* @return array
|
|
*/
|
|
public function save($formId)
|
|
{
|
|
return $this->renderSuccess();
|
|
}
|
|
|
|
}
|