File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed
Bundle/FrameworkBundle/Resources/config/schema Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 350
350
<xsd : restriction base =" xsd:string" >
351
351
<xsd : enumeration value =" " />
352
352
<xsd : enumeration value =" workflow.leave" />
353
- <xsd : enumeration value =" workflow.leave" />
354
353
<xsd : enumeration value =" workflow.transition" />
355
354
<xsd : enumeration value =" workflow.enter" />
356
355
<xsd : enumeration value =" workflow.entered" />
Original file line number Diff line number Diff line change @@ -31,14 +31,14 @@ final class WorkflowEvents
31
31
const GUARD = 'workflow.guard ' ;
32
32
33
33
/**
34
- * @Event("Symfony\Component\Workflow\Event\AnnounceEvent ")
34
+ * @Event("Symfony\Component\Workflow\Event\LeaveEvent ")
35
35
*/
36
- const ANNOUNCE = 'workflow.announce ' ;
36
+ const LEAVE = 'workflow.leave ' ;
37
37
38
38
/**
39
- * @Event("Symfony\Component\Workflow\Event\CompletedEvent ")
39
+ * @Event("Symfony\Component\Workflow\Event\TransitionEvent ")
40
40
*/
41
- const COMPLETED = 'workflow.completed ' ;
41
+ const TRANSITION = 'workflow.transition ' ;
42
42
43
43
/**
44
44
* @Event("Symfony\Component\Workflow\Event\EnterEvent")
@@ -51,14 +51,14 @@ final class WorkflowEvents
51
51
const ENTERED = 'workflow.entered ' ;
52
52
53
53
/**
54
- * @Event("Symfony\Component\Workflow\Event\LeaveEvent ")
54
+ * @Event("Symfony\Component\Workflow\Event\CompletedEvent ")
55
55
*/
56
- const LEAVE = 'workflow.leave ' ;
56
+ const COMPLETED = 'workflow.completed ' ;
57
57
58
58
/**
59
- * @Event("Symfony\Component\Workflow\Event\TransitionEvent ")
59
+ * @Event("Symfony\Component\Workflow\Event\AnnounceEvent ")
60
60
*/
61
- const TRANSITION = 'workflow.transition ' ;
61
+ const ANNOUNCE = 'workflow.announce ' ;
62
62
63
63
/**
64
64
* Event aliases.
You can’t perform that action at this time.
0 commit comments