From 3f5770ab02c0dc8a2a17480b0ca6546f3a83f699 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 1 Sep 2020 07:38:03 +0200 Subject: [PATCH] fix const alignment --- Models/PermissionState.php | 4 ++-- Models/SettingsEnum.php | 4 ++-- Models/Status.php | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Models/PermissionState.php b/Models/PermissionState.php index c6988b2..75c500f 100755 --- a/Models/PermissionState.php +++ b/Models/PermissionState.php @@ -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; } diff --git a/Models/SettingsEnum.php b/Models/SettingsEnum.php index 6fe35b0..a61c03d 100755 --- a/Models/SettingsEnum.php +++ b/Models/SettingsEnum.php @@ -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'; } diff --git a/Models/Status.php b/Models/Status.php index ca36145..f37f79b 100755 --- a/Models/Status.php +++ b/Models/Status.php @@ -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; }