Bristol SU Support Package
LogoutOfExtras.php
Go to the documentation of this file.
1 <?php
2 
3 
5 
6 
9 
14 {
15 
21  private $authentication;
22 
29  {
30  $this->authentication = $authentication;
31  }
32 
40  public function handle(Request $request, \Closure $next)
41  {
42  $this->authentication->reset();
43  return $next($request);
44  }
45 
46 }