fix const alignment

This commit is contained in:
Dennis Eichhorn 2020-09-01 07:38:03 +02:00
parent 76b117eeda
commit 4d087aeb4e
3 changed files with 10 additions and 10 deletions

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}