/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/PasswordHasher/Exception/ExceptionInterface.php
21 строка
474 B
Robin Chalas
[Security] Extract password hashing from security-core - using the right naming
12 фев 2021, 18:42
12 фев 2021, 18:42
c5c981c
Код
Авторство
О чём код?
<?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\PasswordHasher\Exception; /** * Interface for exceptions thrown by the password-hasher component. * * @author Robin Chalas <robin.chalas@gmail.com> */ interface ExceptionInterface extends \Throwable { }