vendor/symfony/security-core/User/UserChecker.php line 14

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\Core\User;
  11. trigger_deprecation('symfony/security-core', '5.3', 'The "%s" class is deprecated, use "%s" instead.', UserChecker::class, InMemoryUserChecker::class);
  12. class_exists(InMemoryUserChecker::class);
  13. if (false) {
  14. /**
  15. * UserChecker checks the user account flags.
  16. *
  17. * @author Fabien Potencier <fabien@symfony.com>
  18. *
  19. * @deprecated since Symfony 5.3, use {@link InMemoryUserChecker} instead
  20. */
  21. class UserChecker
  22. {
  23. }
  24. }