]> BookStack Code Mirror - bookstack/blobdiff - app/Http/Middleware/AuthenticatedOrPendingMfa.php
Customization: Added parent tag classes
[bookstack] / app / Http / Middleware / AuthenticatedOrPendingMfa.php
index febfef20788781db83fb7264d2ebfe0d23f876b2..24d88c909d230d179e29603c0624be5bfa89586d 100644 (file)
@@ -2,13 +2,12 @@
 
 namespace BookStack\Http\Middleware;
 
-use BookStack\Auth\Access\LoginService;
-use BookStack\Auth\Access\Mfa\MfaSession;
+use BookStack\Access\LoginService;
+use BookStack\Access\Mfa\MfaSession;
 use Closure;
 
 class AuthenticatedOrPendingMfa
 {
-
     protected $loginService;
     protected $mfaSession;
 
@@ -18,12 +17,12 @@ class AuthenticatedOrPendingMfa
         $this->mfaSession = $mfaSession;
     }
 
-
     /**
      * Handle an incoming request.
      *
-     * @param  \Illuminate\Http\Request  $request
-     * @param  \Closure  $next
+     * @param \Illuminate\Http\Request $request
+     * @param \Closure                 $next
+     *
      * @return mixed
      */
     public function handle($request, Closure $next)