/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Webhook/Server/RequestConfiguratorInterface.php
23 строки
595 B
Nicolas Grekas
Check whether secrets are empty and mark them all as sensitive
06 ноя 2023, 20:20
06 ноя 2023, 20:20
52ca699
Код
Авторство
О чём код?
<?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\Webhook\Server; use Symfony\Component\HttpClient\HttpOptions; use Symfony\Component\RemoteEvent\RemoteEvent; /** * @author Fabien Potencier <fabien@symfony.com> */ interface RequestConfiguratorInterface { public function configure(RemoteEvent $event, #[\SensitiveParameter] string $secret, HttpOptions $options): void; }