mistype fixed

This commit is contained in:
ilmedova 2022-07-06 18:42:43 +05:00
parent c7577ef163
commit dfe826497a
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ public function register(Request $request){
// return token in json response
return response()->json(['success' => ['token' => $tokenResult, 'client' => $client]], 200);
}
catch(\Exveption $e){
catch(\Exception $e){
return response()->json(['error' => ['message' => $e->getMessage()]], 400);
}
}