/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Scheduler/Trigger/StaticMessageProvider.php
42 строки
930 B
valtzu
[Scheduler] Separate id and description in message providers
02 янв 2024, 16:06
02 янв 2024, 16:06
d73bf83
Код
Авторство
О чём код?
<?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; final class StaticMessageProvider implements MessageProviderInterface, \Stringable { /** * @param array<object> $messages */ public function __construct( private array $messages, private string $id = '', private string $description = '', ) { } public function getMessages(MessageContext $context): iterable { return $this->messages; } public function getId(): string { return $this->id; } public function __toString(): string { return $this->description ?: $this->id; } }