/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Scheduler/Trigger/TriggerInterface.php
20 строк
545 B
Ousama Ben Younes
[Scheduler] Recover pending RecurringMessages after consumer stops midway
23 май 2026, 18:07
23 май 2026, 18:07
ebc7829
Код
Авторство
О чём код?
<?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; interface TriggerInterface extends \Stringable { /** * Returns the next run date strictly after $run; if null is returned, this method won't be called again. */ public function getNextRunDate(\DateTimeImmutable $run): ?\DateTimeImmutable; }