xiaogang 4 years ago
parent
commit
0354379bb6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Controllers/Api/AuthorizationsController.php

+ 1 - 1
app/Http/Controllers/Api/AuthorizationsController.php

xqd
@@ -134,7 +134,7 @@ class AuthorizationsController extends Controller
      * 注册账号
      */
     public function register(Request $request){
-        return $this->response->accepted(null,'该手机号码已使用');
+       // return $this->response->accepted(null,'该手机号码已使用');
         $validator = Validator::make($request->all(), [
             'mobile' => ['required', 'regex:/^1[3456789]\d{9}$/'],
             'password' => 'bail|required',