/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Notifier/ChatterInterface.php
23 строки
546 B
bocharsky-bw
Fix typo: synchronous -> synchronously
27 июн 2024, 23:38
27 июн 2024, 23:38
786abd1
Код
Авторство
О чём код?
<?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; use Symfony\Component\Notifier\Transport\TransportInterface; /** * Interface for classes able to send chat messages synchronously and/or asynchronously. * * @author Fabien Potencier <fabien@symfony.com> */ interface ChatterInterface extends TransportInterface { }