fix const alignment

This commit is contained in:
Dennis Eichhorn 2020-09-01 07:38:03 +02:00
parent 119ee6b253
commit 8c03e2d24f
3 changed files with 7 additions and 7 deletions

View File

@ -26,13 +26,13 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class ProgressType extends Enum
{
public const MANUAL = 0;
public const MANUAL = 0;
public const LINEAR = 1;
public const LINEAR = 1;
public const EXPONENTIAL = 2;
public const LOG = 3;
public const LOG = 3;
public const TASKS = 4;
public const TASKS = 4;
}

View File

@ -28,5 +28,5 @@ abstract class ProjectResponsibility extends Enum
{
public const MANAGER = 0;
public const OTHER = 1;
public const OTHER = 1;
}

View File

@ -26,11 +26,11 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class ProjectStatus extends Enum
{
public const ACTIVE = 0;
public const ACTIVE = 0;
public const INACTIVE = 1;
public const HOLD = 2;
public const HOLD = 2;
public const CANCELED = 3;