From e9cd5d736e86f6324ea13467c20358698d4f33cb 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/ClockingStatus.php | 6 +++--- Models/ClockingType.php | 10 +++++----- Models/PermissionState.php | 10 +++++----- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Models/ClockingStatus.php b/Models/ClockingStatus.php index 2c578c9..15977d5 100755 --- a/Models/ClockingStatus.php +++ b/Models/ClockingStatus.php @@ -26,11 +26,11 @@ use phpOMS\Stdlib\Base\Enum; */ abstract class ClockingStatus extends Enum { - public const START = 1; + public const START = 1; - public const PAUSE = 2; + public const PAUSE = 2; public const CONTINUE = 3; - public const END = 4; + public const END = 4; } diff --git a/Models/ClockingType.php b/Models/ClockingType.php index 62b2bf9..5c6ebb7 100755 --- a/Models/ClockingType.php +++ b/Models/ClockingType.php @@ -26,15 +26,15 @@ use phpOMS\Stdlib\Base\Enum; */ abstract class ClockingType extends Enum { - public const OFFICE = 1; + public const OFFICE = 1; - public const HOME = 2; + public const HOME = 2; - public const REMOTE = 3; + public const REMOTE = 3; - public const VACATION = 4; + public const VACATION = 4; - public const SICK = 5; + public const SICK = 5; public const ON_THE_MOVE = 6; } diff --git a/Models/PermissionState.php b/Models/PermissionState.php index b63b6b8..93cca64 100755 --- a/Models/PermissionState.php +++ b/Models/PermissionState.php @@ -26,15 +26,15 @@ use phpOMS\Stdlib\Base\Enum; */ abstract class PermissionState extends Enum { - public const DASHBOARD = 1; + public const DASHBOARD = 1; - public const PRIVATE_DASHBOARD = 2; + public const PRIVATE_DASHBOARD = 2; - public const SESSION = 3; + public const SESSION = 3; - public const SESSION_FOREIGN = 4; + public const SESSION_FOREIGN = 4; - public const SESSION_ELEMENT = 5; + public const SESSION_ELEMENT = 5; public const SESSION_ELEMENT_FOREIGN = 6; }