vendor/symfony/security-guard/Token/GuardTokenInterface.php line 16

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\Guard\Token;
  11. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  12. trigger_deprecation('symfony/security-guard', '5.3', 'The "%s" class is deprecated, use the new authenticator system instead.', GuardTokenInterface::class);
  13. /**
  14. * A marker interface that both guard tokens implement.
  15. *
  16. * Any tokens passed to GuardAuthenticationProvider (i.e. any tokens that
  17. * are handled by the guard auth system) must implement this
  18. * interface.
  19. *
  20. * @author Ryan Weaver <ryan@knpuniversity.com>
  21. *
  22. * @deprecated since Symfony 5.3, use the new authenticator system instead
  23. */
  24. interface GuardTokenInterface extends TokenInterface
  25. {
  26. }