/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Messenger/Message/DefaultStampsProviderInterface.php
25 строк
631 B
Vincent Langlet
[Messenger] Introduce `DefaultStampsProviderInterface `
12 сен 2025, 09:12
12 сен 2025, 09:12
5605e0d
Код
Авторство
О чём код?
<?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\Messenger\Message; use Symfony\Component\Messenger\Stamp\StampInterface; interface DefaultStampsProviderInterface { /** * List of stamps which will be automatically added to the envelope, * if there is no other stamp of the same class already set. * * @return array<StampInterface> */ public function getDefaultStamps(): array; }