fix const alignment

This commit is contained in:
Dennis Eichhorn 2020-09-01 07:38:03 +02:00
parent efc9a7caea
commit 279d6cc6f9
5 changed files with 15 additions and 15 deletions

View File

@ -26,9 +26,9 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class PermissionState extends Enum
{
public const TASK = 1;
public const TASK = 1;
public const ELEMENT = 2;
public const ELEMENT = 2;
public const ANALYSIS = 3;
}

View File

@ -26,15 +26,15 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class TaskPriority extends Enum
{
public const NONE = 0;
public const NONE = 0;
public const VLOW = 1;
public const VLOW = 1;
public const LOW = 2;
public const LOW = 2;
public const MEDIUM = 3;
public const HIGH = 4;
public const HIGH = 4;
public const VHIGH = 5;
public const VHIGH = 5;
}

View File

@ -26,13 +26,13 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class TaskStatus 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;
}

View File

@ -28,7 +28,7 @@ abstract class TaskType extends Enum
{
public const TEMPLATE = 1;
public const SINGLE = 2;
public const SINGLE = 2;
public const HIDDEN = 3;
public const HIDDEN = 3;
}

View File

@ -26,9 +26,9 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class TaskVisibility extends Enum
{
public const TO = 1;
public const TO = 1;
public const CC = 2;
public const CC = 2;
public const BCC = 3;
}