29 lines
357 B
PHP
29 lines
357 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace App\Controller\Api\V1;
|
||
|
|
||
|
class CommonController extends CController
|
||
|
{
|
||
|
/**
|
||
|
* 发送短信验证码
|
||
|
*/
|
||
|
public function SmsCode(){
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 发送邮件验证码
|
||
|
*/
|
||
|
public function EmailCode(){
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 公共设置
|
||
|
*/
|
||
|
public function Setting(){
|
||
|
|
||
|
}
|
||
|
}
|