/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Webhook/Server/NativeJsonPayloadSerializer.php
20 строк
491 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; final class NativeJsonPayloadSerializer implements PayloadSerializerInterface { public function serialize(array $payload): string { return json_encode($payload, \JSON_THROW_ON_ERROR); } }