@@ -28,44 +28,44 @@ final class WorkflowEvents
28
28
/**
29
29
* @Event("Symfony\Component\Workflow\Event\GuardEvent")
30
30
*/
31
- const GUARD = 'workflow.guard ' ;
31
+ public const GUARD = 'workflow.guard ' ;
32
32
33
33
/**
34
34
* @Event("Symfony\Component\Workflow\Event\LeaveEvent")
35
35
*/
36
- const LEAVE = 'workflow.leave ' ;
36
+ public const LEAVE = 'workflow.leave ' ;
37
37
38
38
/**
39
39
* @Event("Symfony\Component\Workflow\Event\TransitionEvent")
40
40
*/
41
- const TRANSITION = 'workflow.transition ' ;
41
+ public const TRANSITION = 'workflow.transition ' ;
42
42
43
43
/**
44
44
* @Event("Symfony\Component\Workflow\Event\EnterEvent")
45
45
*/
46
- const ENTER = 'workflow.enter ' ;
46
+ public const ENTER = 'workflow.enter ' ;
47
47
48
48
/**
49
49
* @Event("Symfony\Component\Workflow\Event\EnteredEvent")
50
50
*/
51
- const ENTERED = 'workflow.entered ' ;
51
+ public const ENTERED = 'workflow.entered ' ;
52
52
53
53
/**
54
54
* @Event("Symfony\Component\Workflow\Event\CompletedEvent")
55
55
*/
56
- const COMPLETED = 'workflow.completed ' ;
56
+ public const COMPLETED = 'workflow.completed ' ;
57
57
58
58
/**
59
59
* @Event("Symfony\Component\Workflow\Event\AnnounceEvent")
60
60
*/
61
- const ANNOUNCE = 'workflow.announce ' ;
61
+ public const ANNOUNCE = 'workflow.announce ' ;
62
62
63
63
/**
64
64
* Event aliases.
65
65
*
66
66
* These aliases can be consumed by RegisterListenersPass.
67
67
*/
68
- const ALIASES = [
68
+ public const ALIASES = [
69
69
GuardEvent::class => self ::GUARD ,
70
70
LeaveEvent::class => self ::LEAVE ,
71
71
TransitionEvent::class => self ::TRANSITION ,
0 commit comments