| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- // +----------------------------------------------------------------------
- // | LARAVEL8.0 框架 [ LARAVEL ][ RXThinkCMF ]
- // +----------------------------------------------------------------------
- // | 版权所有 2017~2021 LARAVEL研发中心
- // +----------------------------------------------------------------------
- // | 官方网站: http://www.laravel.cn
- // +----------------------------------------------------------------------
- // | Author: laravel开发员 <laravel.qq.com>
- // +----------------------------------------------------------------------
- namespace App\Services;
- use App\Models\ConfigModel;
- /**
- * 手机短信管理-服务类
- * @author
- * @since 2020/11/11
- * Class SmsService
- * @package App\Services
- */
- class SmsService extends BaseService
- {
- /**
- * 发送手机短信
- * @param $email
- * @param string $scene 场景:默认reg-注册
- * @return bool
- */
- public function sendCode($mobile, $scene='reg')
- {
- return true;
- }
- /**
- * 验证手机短信
- * @param $mobile
- * @param string $scene 场景:默认reg-注册
- * @return bool
- */
- public function check($mobile, $scene='reg')
- {
- return true;
- }
- }
|