File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 88
99use Illuminate \Http \Request ;
1010use Illuminate \Support \Facades \Validator ;
11- use Jrean \UserVerification \Facades \UserVerification ;
11+ use Jrean \UserVerification \Facades \UserVerification as UserVerificationFacade ;
1212use Jrean \UserVerification \Exceptions \UserNotFoundException ;
1313use Jrean \UserVerification \Exceptions \UserIsVerifiedException ;
1414use Jrean \UserVerification \Exceptions \TokenMismatchException ;
@@ -28,7 +28,7 @@ public function getVerification(Request $request, $token)
2828 $ this ->validateRequest ($ request );
2929
3030 try {
31- UserVerification ::process ($ request ->input ('email ' ), $ token , $ this ->userTable ());
31+ UserVerificationFacade ::process ($ request ->input ('email ' ), $ token , $ this ->userTable ());
3232 } catch (UserNotFoundException $ e ) {
3333 return redirect ($ this ->redirectIfVerificationFails ());
3434 } catch (UserIsVerifiedException $ e ) {
You can’t perform that action at this time.
0 commit comments