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 8
8
9
9
use Illuminate \Http \Request ;
10
10
use Illuminate \Support \Facades \Validator ;
11
- use Jrean \UserVerification \Facades \UserVerification ;
11
+ use Jrean \UserVerification \Facades \UserVerification as UserVerificationFacade ;
12
12
use Jrean \UserVerification \Exceptions \UserNotFoundException ;
13
13
use Jrean \UserVerification \Exceptions \UserIsVerifiedException ;
14
14
use Jrean \UserVerification \Exceptions \TokenMismatchException ;
@@ -28,7 +28,7 @@ public function getVerification(Request $request, $token)
28
28
$ this ->validateRequest ($ request );
29
29
30
30
try {
31
- UserVerification ::process ($ request ->input ('email ' ), $ token , $ this ->userTable ());
31
+ UserVerificationFacade ::process ($ request ->input ('email ' ), $ token , $ this ->userTable ());
32
32
} catch (UserNotFoundException $ e ) {
33
33
return redirect ($ this ->redirectIfVerificationFails ());
34
34
} catch (UserIsVerifiedException $ e ) {
You can’t perform that action at this time.
0 commit comments