/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/RemoteEvent/Attribute/AsRemoteEventConsumer.php
27 строк
653 B
Gabriel Ostrolucký
[RemoteEvent] Allow repeating AsRemoteEventConsumer
15 июл 2026, 16:08
Не верифицирован
15 июл 2026, 16:08
1aa5e17
Код
Авторство
О чём код?
<?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\RemoteEvent\Attribute; /** * @author Fabien Potencier <fabien@symfony.com> */ #[\Attribute(\Attribute::TARGET_CLASS | \Attribute::IS_REPEATABLE)] class AsRemoteEventConsumer { /** * @param string $name The name of the remote event consumer, used to identify it when defining remote events */ public function __construct( public string $name, ) { } }