From 9cfbec431e65a6d4495ca9b482727e18e43e4ae9 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 16 Apr 2023 01:55:35 +0200 Subject: [PATCH] fix demoSetup --- Models/ProjectResponsibility.php | 4 ++-- Models/ProjectStatus.php | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Models/ProjectResponsibility.php b/Models/ProjectResponsibility.php index a92b85e..735ad7d 100755 --- a/Models/ProjectResponsibility.php +++ b/Models/ProjectResponsibility.php @@ -26,7 +26,7 @@ use phpOMS\Stdlib\Base\Enum; */ abstract class ProjectResponsibility extends Enum { - public const MANAGER = 0; + public const MANAGER = 1; - public const OTHER = 1; + public const OTHER = 2; } diff --git a/Models/ProjectStatus.php b/Models/ProjectStatus.php index 29a3ed3..427f29d 100755 --- a/Models/ProjectStatus.php +++ b/Models/ProjectStatus.php @@ -26,13 +26,13 @@ use phpOMS\Stdlib\Base\Enum; */ abstract class ProjectStatus extends Enum { - public const ACTIVE = 0; + public const ACTIVE = 1; - public const INACTIVE = 1; + public const INACTIVE = 2; - public const HOLD = 2; + public const HOLD = 3; - public const CANCELED = 3; + public const CANCELED = 4; - public const FINISHED = 4; + public const FINISHED = 5; }