vendor/symfony/security-core/Exception/UserNotFoundException.php line 20

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. /**
  12.  * UserNotFoundException is thrown if a User cannot be found for the given identifier.
  13.  *
  14.  * @author Fabien Potencier <fabien@symfony.com>
  15.  * @author Alexander <iam.asm89@gmail.com>
  16.  */
  17. class UserNotFoundException extends AuthenticationException
  18. {
  19.     private ?string $identifier null;
  20.     /**
  21.      * {@inheritdoc}
  22.      */
  23.     public function getMessageKey(): string
  24.     {
  25.         return 'Username could not be found.';
  26.     }
  27.     /**
  28.      * Get the user identifier (e.g. username or email address).
  29.      */
  30.     public function getUserIdentifier(): ?string
  31.     {
  32.         return $this->identifier;
  33.     }
  34.     /**
  35.      * Set the user identifier (e.g. username or email address).
  36.      */
  37.     public function setUserIdentifier(string $identifier): void
  38.     {
  39.         $this->identifier $identifier;
  40.     }
  41.     /**
  42.      * {@inheritdoc}
  43.      */
  44.     public function getMessageData(): array
  45.     {
  46.         return ['{{ username }}' => $this->identifier'{{ user_identifier }}' => $this->identifier];
  47.     }
  48.     /**
  49.      * {@inheritdoc}
  50.      */
  51.     public function __serialize(): array
  52.     {
  53.         return [$this->identifierparent::__serialize()];
  54.     }
  55.     /**
  56.      * {@inheritdoc}
  57.      */
  58.     public function __unserialize(array $data): void
  59.     {
  60.         [$this->identifier$parentData] = $data;
  61.         $parentData \is_array($parentData) ? $parentData unserialize($parentData);
  62.         parent::__unserialize($parentData);
  63.     }
  64. }
  65. if (!class_exists(UsernameNotFoundException::class, false)) {
  66.     class_alias(UserNotFoundException::class, UsernameNotFoundException::class);
  67. }