/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Notifier/Bridge/Matrix/MatrixOptions.php
35 строк
751 B
Christian Flothmann
do not implement JsonSerializable in MatrixOptions
14 фев 2025, 15:19
14 фев 2025, 15:19
1af047d
Код
Авторство
О чём код?
<?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\Notifier\Bridge\Matrix; use Symfony\Component\Notifier\Message\MessageOptionsInterface; /** * @author Frank Schulze <frank@akiber.de> */ final class MatrixOptions implements MessageOptionsInterface { public function __construct( private array $options = [], ) { } public function toArray(): array { return $this->options; } public function getRecipientId(): ?string { return $this->options['recipient_id'] ?? null; } }