From e70e48abaabe8857d273450805e09d7385a1545e Mon Sep 17 00:00:00 2001 From: Adam Magness Date: Sat, 13 Jan 2018 13:10:14 -0500 Subject: [PATCH] constant move define to const --- src/Core/UserImport.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Core/UserImport.php b/src/Core/UserImport.php index 8b259b2dbe..2c41fb27b0 100644 --- a/src/Core/UserImport.php +++ b/src/Core/UserImport.php @@ -15,13 +15,13 @@ use dba; require_once "include/dba.php"; -define("IMPORT_DEBUG", false); - /** * @brief UserImport class */ class UserImport { + const IMPORT_DEBUG = false; + private static function lastInsertId() { if (IMPORT_DEBUG) { -- 2.39.2