// +---------------------------------------------------------------------- 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; } }