/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Scheduler/Trigger/MessageProviderInterface.php
24 строки
538 B
Jeroeny
[Scheduler] Trigger unique messages at runtime
27 сен 2023, 15:48
27 сен 2023, 15:48
06b16bd
Код
Авторство
О чём код?
<?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\Scheduler\Trigger; use Symfony\Component\Scheduler\Generator\MessageContext; interface MessageProviderInterface { /** * @return iterable<object> */ public function getMessages(MessageContext $context): iterable; public function getId(): string; }