/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Scheduler/Trigger/CallbackTrigger.php
37 строк
906 B
Nicolas Grekas
Merge branch '6.3' into 6.4
23 янв 2024, 17:51
23 янв 2024, 17:51
ae0a783
Код
Авторство
О чём код?
<?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; /** * @author Fabien Potencier <fabien@symfony.com> */ final class CallbackTrigger implements TriggerInterface { private \Closure $callback; private string $description; public function __construct(callable $callback, ?string $description = null) { $this->callback = $callback(...); $this->description = $description ?? spl_object_hash($this->callback); } public function __toString(): string { return $this->description; } public function getNextRunDate(\DateTimeImmutable $run): ?\DateTimeImmutable { return ($this->callback)($run); } }