/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Workflow/Attribute/BuildEventNameTrait.php
39 строк
1 KB
Alexander M. Turek
Prefix all sprintf() calls
20 июн 2024, 18:52
20 июн 2024, 18:52
6ce530c
Код
Авторство
О чём код?
<?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\Workflow\Attribute; use Symfony\Component\Workflow\Exception\LogicException; /** * @author Grégoire Pineau <lyrixx@lyrixx.info> * * @internal */ trait BuildEventNameTrait { private static function buildEventName(string $keyword, string $argument, ?string $workflow = null, ?string $node = null): string { if (null === $workflow) { if (null !== $node) { throw new LogicException(\sprintf('The "%s" argument of "%s" cannot be used without a "workflow" argument.', $argument, self::class)); } return \sprintf('workflow.%s', $keyword); } if (null === $node) { return \sprintf('workflow.%s.%s', $workflow, $keyword); } return \sprintf('workflow.%s.%s.%s', $workflow, $keyword, $node); } }