/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Ldap/Security/RoleFetcherInterface.php
25 строк
512 B
Florent Morselli
[Security] Ability to add roles in form_login_ldap by ldap group
07 фев 2025, 23:05
Не верифицирован
07 фев 2025, 23:05
b183e4a
Код
Авторство
О чём код?
<?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\Ldap\Security; use Symfony\Component\Ldap\Entry; /** * Fetches LDAP roles for a given entry. */ interface RoleFetcherInterface { /** * @return string[] The list of roles */ public function fetchRoles(Entry $entry): array; }