@@ -28,44 +28,44 @@ final class WorkflowEvents
2828 /**
2929 * @Event("Symfony\Component\Workflow\Event\GuardEvent")
3030 */
31- const GUARD = 'workflow.guard ' ;
31+ public const GUARD = 'workflow.guard ' ;
3232
3333 /**
3434 * @Event("Symfony\Component\Workflow\Event\LeaveEvent")
3535 */
36- const LEAVE = 'workflow.leave ' ;
36+ public const LEAVE = 'workflow.leave ' ;
3737
3838 /**
3939 * @Event("Symfony\Component\Workflow\Event\TransitionEvent")
4040 */
41- const TRANSITION = 'workflow.transition ' ;
41+ public const TRANSITION = 'workflow.transition ' ;
4242
4343 /**
4444 * @Event("Symfony\Component\Workflow\Event\EnterEvent")
4545 */
46- const ENTER = 'workflow.enter ' ;
46+ public const ENTER = 'workflow.enter ' ;
4747
4848 /**
4949 * @Event("Symfony\Component\Workflow\Event\EnteredEvent")
5050 */
51- const ENTERED = 'workflow.entered ' ;
51+ public const ENTERED = 'workflow.entered ' ;
5252
5353 /**
5454 * @Event("Symfony\Component\Workflow\Event\CompletedEvent")
5555 */
56- const COMPLETED = 'workflow.completed ' ;
56+ public const COMPLETED = 'workflow.completed ' ;
5757
5858 /**
5959 * @Event("Symfony\Component\Workflow\Event\AnnounceEvent")
6060 */
61- const ANNOUNCE = 'workflow.announce ' ;
61+ public const ANNOUNCE = 'workflow.announce ' ;
6262
6363 /**
6464 * Event aliases.
6565 *
6666 * These aliases can be consumed by RegisterListenersPass.
6767 */
68- const ALIASES = [
68+ public const ALIASES = [
6969 GuardEvent::class => self ::GUARD ,
7070 LeaveEvent::class => self ::LEAVE ,
7171 TransitionEvent::class => self ::TRANSITION ,
0 commit comments