/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Security/Http/Firewall/RefreshUserResult.php
32 строки
790 B
Amoifr
[Security] Surface the deauthentication reason and providers in the profiler
03 авг 2026, 11:44
03 авг 2026, 11:44
779bc01
Код
Авторство
О чём код?
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Http\Firewall; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; /** * Outcome of a user-refresh attempt performed by {@see ContextListener::refreshUser()}. * * @internal */ final class RefreshUserResult { /** * @param list<class-string> $providerClasses */ public function __construct( public readonly ?TokenInterface $token, public readonly ?string $deauthenticationReason = null, public readonly array $providerClasses = [], ) { } }