/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Webhook/Server/Transport.php
42 строки
1 KB
Fabien Potencier
[Webhook] Mark component as non experimental
03 авг 2023, 13:54
03 авг 2023, 13:54
feabb1e
Код
Авторство
О чём код?
<?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; use Symfony\Component\Webhook\Subscriber; use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Fabien Potencier <fabien@symfony.com> */ class Transport implements TransportInterface { public function __construct( private readonly HttpClientInterface $client, private readonly RequestConfiguratorInterface $headers, private readonly RequestConfiguratorInterface $body, private readonly RequestConfiguratorInterface $signer, ) { } public function send(Subscriber $subscriber, RemoteEvent $event): void { $options = new HttpOptions(); $this->headers->configure($event, $subscriber->getSecret(), $options); $this->body->configure($event, $subscriber->getSecret(), $options); $this->signer->configure($event, $subscriber->getSecret(), $options); $this->client->request('POST', $subscriber->getUrl(), $options->toArray()); } }