vendor/symfony/security-core/Exception/UsernameNotFoundException.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\Exception;
  11. trigger_deprecation('symfony/security-core''5.3''The "%s" class is deprecated, use "%s" instead.'UsernameNotFoundException::class, UserNotFoundException::class);
  12. class_exists(UserNotFoundException::class);
  13. if (false) {
  14.     /**
  15.      * @deprecated since Symfony 5.3 to be removed in 6.0, use UserNotFoundException instead.
  16.      */
  17.     class UsernameNotFoundException extends AuthenticationException
  18.     {
  19.     }
  20. }