fix const alignment

This commit is contained in:
Dennis Eichhorn 2020-09-01 07:38:03 +02:00
parent 062f66d06f
commit 3f5770ab02
3 changed files with 6 additions and 6 deletions

View File

@ -26,11 +26,11 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class PermissionState extends Enum
{
public const UNIT = 1;
public const UNIT = 1;
public const DEPARTMENT = 2;
public const POSITION = 3;
public const POSITION = 3;
public const ORGANIGRAM = 4;
}

View File

@ -26,9 +26,9 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class SettingsEnum extends Enum
{
public const GROUP_GENERATE_AUTOMATICALLY_UNIT = '1004700001';
public const GROUP_GENERATE_AUTOMATICALLY_UNIT = '1004700001';
public const GROUP_GENERATE_AUTOMATICALLY_DEPARTMENT = '1004700002';
public const GROUP_GENERATE_AUTOMATICALLY_POSITION = '1004700003';
public const GROUP_GENERATE_AUTOMATICALLY_POSITION = '1004700003';
}

View File

@ -26,9 +26,9 @@ use phpOMS\Stdlib\Base\Enum;
*/
abstract class Status extends Enum
{
public const ACTIVE = 1;
public const ACTIVE = 1;
public const INACTIVE = 2;
public const HIDDEN = 4;
public const HIDDEN = 4;
}