/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Webhook/Server/SerializerPayloadSerializer.php
27 строк
646 B
Christian Flothmann
decouple the Webhook component from the Serializer component
13 авг 2024, 22:29
13 авг 2024, 22:29
ef32a22
Код
Авторство
О чём код?
<?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\Serializer\SerializerInterface; final class SerializerPayloadSerializer implements PayloadSerializerInterface { public function __construct( private SerializerInterface $serializer, ) { } public function serialize(array $payload): string { return $this->serializer->serialize($payload, 'json'); } }