File tree 3 files changed +14
-14
lines changed
3 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,10 @@ class PlantUmlDumper implements DumperInterface
31
31
private const INITIAL = '<<initial>> ' ;
32
32
private const MARKED = '<<marked>> ' ;
33
33
34
- const STATEMACHINE_TRANSITION = 'arrow ' ;
35
- const WORKFLOW_TRANSITION = 'square ' ;
36
- const TRANSITION_TYPES = [self ::STATEMACHINE_TRANSITION , self ::WORKFLOW_TRANSITION ];
37
- const DEFAULT_OPTIONS = [
34
+ public const STATEMACHINE_TRANSITION = 'arrow ' ;
35
+ public const WORKFLOW_TRANSITION = 'square ' ;
36
+ public const TRANSITION_TYPES = [self ::STATEMACHINE_TRANSITION , self ::WORKFLOW_TRANSITION ];
37
+ public const DEFAULT_OPTIONS = [
38
38
'skinparams ' => [
39
39
'titleBorderRoundCorner ' => 15 ,
40
40
'titleBorderThickness ' => 2 ,
Original file line number Diff line number Diff line change 16
16
*/
17
17
final class TransitionBlocker
18
18
{
19
- const BLOCKED_BY_MARKING = '19beefc8-6b1e-4716-9d07-a39bd6d16e34 ' ;
20
- const BLOCKED_BY_EXPRESSION_GUARD_LISTENER = '326a1e9c-0c12-11e8-ba89-0ed5f89f718b ' ;
21
- const UNKNOWN = 'e8b5bbb9-5913-4b98-bfa6-65dbd228a82a ' ;
19
+ public const BLOCKED_BY_MARKING = '19beefc8-6b1e-4716-9d07-a39bd6d16e34 ' ;
20
+ public const BLOCKED_BY_EXPRESSION_GUARD_LISTENER = '326a1e9c-0c12-11e8-ba89-0ed5f89f718b ' ;
21
+ public const UNKNOWN = 'e8b5bbb9-5913-4b98-bfa6-65dbd228a82a ' ;
22
22
23
23
private $ message ;
24
24
private $ code ;
Original file line number Diff line number Diff line change @@ -20,37 +20,37 @@ final class WorkflowEvents
20
20
/**
21
21
* @Event("Symfony\Component\Workflow\Event\GuardEvent")
22
22
*/
23
- const GUARD = 'workflow.guard ' ;
23
+ public const GUARD = 'workflow.guard ' ;
24
24
25
25
/**
26
26
* @Event("Symfony\Component\Workflow\Event\AnnounceEvent")
27
27
*/
28
- const ANNOUNCE = 'workflow.announce ' ;
28
+ public const ANNOUNCE = 'workflow.announce ' ;
29
29
30
30
/**
31
31
* @Event("Symfony\Component\Workflow\Event\CompletedEvent")
32
32
*/
33
- const COMPLETED = 'workflow.completed ' ;
33
+ public const COMPLETED = 'workflow.completed ' ;
34
34
35
35
/**
36
36
* @Event("Symfony\Component\Workflow\Event\EnterEvent")
37
37
*/
38
- const ENTER = 'workflow.enter ' ;
38
+ public const ENTER = 'workflow.enter ' ;
39
39
40
40
/**
41
41
* @Event("Symfony\Component\Workflow\Event\EnteredEvent")
42
42
*/
43
- const ENTERED = 'workflow.entered ' ;
43
+ public const ENTERED = 'workflow.entered ' ;
44
44
45
45
/**
46
46
* @Event("Symfony\Component\Workflow\Event\LeaveEvent")
47
47
*/
48
- const LEAVE = 'workflow.leave ' ;
48
+ public const LEAVE = 'workflow.leave ' ;
49
49
50
50
/**
51
51
* @Event("Symfony\Component\Workflow\Event\TransitionEvent")
52
52
*/
53
- const TRANSITION = 'workflow.transition ' ;
53
+ public const TRANSITION = 'workflow.transition ' ;
54
54
55
55
private function __construct ()
56
56
{
You can’t perform that action at this time.
0 commit comments