Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. /**
  2. * Handle an incoming request.
  3. *
  4. * @param IlluminateHttpRequest $request
  5. * @param Closure $next
  6. * @param string[] ...$guards
  7. * @return mixed
  8. *
  9. * @throws IlluminateAuthAuthenticationException
  10. */
  11. public function handle($request, Closure $next, ...$guards)
  12. {
  13. $this->authenticate($request, $guards);
  14. return $next($request);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement