From ae1973747271bf2c9905b9148fbd55f3905a8745 Mon Sep 17 00:00:00 2001 From: Molkobain Date: Thu, 27 Aug 2020 16:23:29 +0200 Subject: [PATCH] PHPDoc & code cleanup --- core/cmdbchange.class.inc.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/cmdbchange.class.inc.php b/core/cmdbchange.class.inc.php index e0e9dfc65..9478dbec4 100644 --- a/core/cmdbchange.class.inc.php +++ b/core/cmdbchange.class.inc.php @@ -57,7 +57,7 @@ class CMDBChange extends DBObject // Helper to keep track of the author of a given change, // taking into account a variety of cases (contact attached or not, impersonation) - static public function GetCurrentUserName() + public static function GetCurrentUserName() { if (UserRights::IsImpersonated()) { @@ -83,5 +83,3 @@ class CMDBChange extends DBObject return $sUser; } } - -?>