From 67442d7d41767095efafcf404489f62d4e51c585 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 16 Apr 2023 01:55:35 +0200 Subject: [PATCH] fix demoSetup --- Models/ReportStatus.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Models/ReportStatus.php b/Models/ReportStatus.php index c7e8dcc..91663a5 100755 --- a/Models/ReportStatus.php +++ b/Models/ReportStatus.php @@ -26,11 +26,11 @@ use phpOMS\Stdlib\Base\Enum; */ abstract class ReportStatus extends Enum { - public const ADDED = 0; + public const ADDED = 1; - public const NO_CHANGE = 1; + public const NO_CHANGE = 2; - public const CHANGE = 2; + public const CHANGE = 3; public const DOWNLOAD_ERROR = -1; }