vendor/symfony/security-http/Authenticator/Passport/Badge/PreAuthenticatedUserBadge.php line 27

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\Http\Authenticator\Passport\Badge;
  11. use Symfony\Component\Security\Http\Authenticator\AbstractPreAuthenticatedAuthenticator;
  12. /**
  13.  * Marks the authentication as being pre-authenticated.
  14.  *
  15.  * This disables pre-authentication user checkers.
  16.  *
  17.  * @see AbstractPreAuthenticatedAuthenticator
  18.  *
  19.  * @author Wouter de Jong <wouter@wouterj.nl>
  20.  *
  21.  * @final
  22.  */
  23. class PreAuthenticatedUserBadge implements BadgeInterface
  24. {
  25.     public function isResolved(): bool
  26.     {
  27.         return true;
  28.     }
  29. }