/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Security/Http/Authentication/ExposeSecurityLevel.php
22 строки
475 B
core23
[Security][SecurityBundle] Show user account status errors
31 янв 2025, 16:26
Не верифицирован
31 янв 2025, 16:26
5a11de5
Код
Авторство
О чём код?
<?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\Authentication; /** * @author Christian Gripp <mail@core23.de> */ enum ExposeSecurityLevel: string { case None = 'none'; case AccountStatus = 'account_status'; case All = 'all'; }