1234567891011121314151617181920 |
- <?php
- namespace plugin\ali_sms\service;
- use think\Facade;
- /**
- * 邮件服务门面
- * @package app\service
- * @method static mixed send($mobile, $event, $templateParam) 发送手机短信
- * @method static mixed checkCode($mobile, $event, $code) 检测手机短信验证码
- * @method static mixed getError() 获取错误
- */
- class AliSmsServiceFacade extends Facade
- {
- protected static function getFacadeClass()
- {
- return AliSms::class;
- }
- }
|