From 5e6ed950cb2eeb88d769b713ea844c5c3c3d6c67 Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Thu, 23 Feb 2023 11:55:31 +0100 Subject: [PATCH] ReOrder LogChannels const --- core/log.class.inc.php | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/core/log.class.inc.php b/core/log.class.inc.php index 9aa63943e..eb83beedd 100644 --- a/core/log.class.inc.php +++ b/core/log.class.inc.php @@ -577,6 +577,18 @@ class LogChannels public const DEADLOCK = 'DeadLock'; + /** + * @var string Everything related to the datamodel CRUD + * @since 3.1.0 + */ + public const DM_CRUD = 'DMCRUD'; + + /** + * @var string Everything related to the event service + * @since 3.1.0 + */ + public const EVENT_SERVICE = 'EventService'; + /** * @var string * @since 2.7.9 3.0.3 3.1.0 N°5588 @@ -593,18 +605,6 @@ class LogChannels public const NOTIFICATIONS = 'notifications'; public const PORTAL = 'portal'; - - /** - * @var string Everything related to the event service - * @since 3.1.0 - */ - public const EVENT_SERVICE = 'EventService'; - - /** - * @var string Everything related to the datamodel CRUD - * @since 3.1.0 - */ - public const DM_CRUD = 'DMCRUD'; }