vendor/symfony/security/Http/Logout/CsrfTokenClearingLogoutHandler.php line 22

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Security\Http\Logout;
  11. use Symfony\Component\HttpFoundation\Request;
  12. use Symfony\Component\HttpFoundation\Response;
  13. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  14. use Symfony\Component\Security\Csrf\TokenStorage\ClearableTokenStorageInterface;
  15. /**
  16.  * @author Christian Flothmann <christian.flothmann@sensiolabs.de>
  17.  */
  18. class CsrfTokenClearingLogoutHandler implements LogoutHandlerInterface
  19. {
  20.     private $csrfTokenStorage;
  21.     public function __construct(ClearableTokenStorageInterface $csrfTokenStorage)
  22.     {
  23.         $this->csrfTokenStorage $csrfTokenStorage;
  24.     }
  25.     public function logout(Request $requestResponse $responseTokenInterface $token)
  26.     {
  27.         $this->csrfTokenStorage->clear();
  28.     }
  29. }