RegisterCsrfTokenClearingLogoutHandlerPass.php 866 B

12345678910111213141516171819202122232425262728293031
  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\Bundle\SecurityBundle\DependencyInjection\Compiler;
  11. use Symfony\Component\DependencyInjection\ContainerBuilder;
  12. trigger_deprecation('symfony/security-bundle', '5.1', 'The "%s" class is deprecated.', RegisterCsrfTokenClearingLogoutHandlerPass::class);
  13. /**
  14. * @deprecated since symfony/security-bundle 5.1
  15. */
  16. class RegisterCsrfTokenClearingLogoutHandlerPass extends RegisterCsrfFeaturesPass
  17. {
  18. public function process(ContainerBuilder $container)
  19. {
  20. if (!$container->has('security.csrf.token_storage')) {
  21. return;
  22. }
  23. $this->registerLogoutHandler($container);
  24. }
  25. }