|
@@ -0,0 +1,18 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace WorkflowBundle\Utils;
|
|
|
+
|
|
|
+class WorkFlowStates
|
|
|
+{
|
|
|
+
|
|
|
+ use ChoiceTrait;
|
|
|
+
|
|
|
+ const ACTIVE_STATE = 'active';
|
|
|
+
|
|
|
+ const PENDING_STATE = 'pending';
|
|
|
+
|
|
|
+ const PRE_NOTICE_STATE = 'pre_notice';
|
|
|
+
|
|
|
+ const SUSPEND_STATE = 'suspend';
|
|
|
+
|
|
|
+}
|