/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Workflow/Event/LeaveEvent.php
39 строк
943 B
Alexander Schranz
Add default generic types to Workflow Events
11 авг 2026, 16:15
11 авг 2026, 16:15
eac6e8a
Код
Авторство
О чём код?
<?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\Event; use Symfony\Component\Workflow\Marking; use Symfony\Component\Workflow\Transition; use Symfony\Component\Workflow\WorkflowInterface; /** * @template T of object = object * * @extends Event<T> */ final class LeaveEvent extends Event { use EventNameTrait { getNameForPlace as public getName; } use HasContextTrait; /** * @param T $subject */ public function __construct(object $subject, Marking $marking, ?Transition $transition = null, ?WorkflowInterface $workflow = null, array $context = []) { parent::__construct($subject, $marking, $transition, $workflow); $this->context = $context; } }