mirror of
https://github.com/Karaka-Management/oms-Workflow.git
synced 2026-01-11 06:48:41 +00:00
fix const alignment
This commit is contained in:
parent
76b117eeda
commit
4d087aeb4e
|
|
@ -26,15 +26,15 @@ use phpOMS\Stdlib\Base\Enum;
|
|||
*/
|
||||
abstract class WorkflowStatus extends Enum
|
||||
{
|
||||
public const OPEN = 1;
|
||||
public const OPEN = 1;
|
||||
|
||||
public const WORKING = 2;
|
||||
public const WORKING = 2;
|
||||
|
||||
public const SUSPENDED = 3;
|
||||
|
||||
public const CANCELED = 4;
|
||||
public const CANCELED = 4;
|
||||
|
||||
public const DONE = 5;
|
||||
public const DONE = 5;
|
||||
|
||||
public const CLOSED = 6;
|
||||
public const CLOSED = 6;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,9 +26,9 @@ use phpOMS\Stdlib\Base\Enum;
|
|||
*/
|
||||
abstract class PermissionStatus extends Enum
|
||||
{
|
||||
public const PENDING = 1;
|
||||
public const PENDING = 1;
|
||||
|
||||
public const APPROVED = 2;
|
||||
public const APPROVED = 2;
|
||||
|
||||
public const DISMISSED = 3;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,11 +26,11 @@ use phpOMS\Stdlib\Base\Enum;
|
|||
*/
|
||||
abstract class States extends Enum
|
||||
{
|
||||
public const DEFAULT = 0;
|
||||
public const DEFAULT = 0;
|
||||
|
||||
public const PENDING = 1;
|
||||
public const PENDING = 1;
|
||||
|
||||
public const APPROVED = 2;
|
||||
public const APPROVED = 2;
|
||||
|
||||
public const DISMISSED = 3;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user