Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2020-01-22 04:13:36 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2020-01-22 04:13:36 +0300
commit676f48349aba754e53fa21446ed105e683193f8f (patch)
treebc0bffa0b4de0ad0a0c9664c024c6d7d0bfd3a0e /libraries/classes/ErrorHandler.php
parent42166cac372d7f528f4fb255ff9fa8d4029a8d15 (diff)
Reference global funcs and consts via use statement
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'libraries/classes/ErrorHandler.php')
-rw-r--r--libraries/classes/ErrorHandler.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/libraries/classes/ErrorHandler.php b/libraries/classes/ErrorHandler.php
index f665f108a0..1c6986c867 100644
--- a/libraries/classes/ErrorHandler.php
+++ b/libraries/classes/ErrorHandler.php
@@ -6,6 +6,20 @@ declare(strict_types=1);
namespace PhpMyAdmin;
+use function array_splice;
+use function count;
+use function defined;
+use function error_reporting;
+use function function_exists;
+use function htmlspecialchars;
+use function set_error_handler;
+use const E_DEPRECATED;
+use const E_STRICT;
+use const E_USER_ERROR;
+use const E_USER_NOTICE;
+use const E_USER_WARNING;
+use const E_NOTICE;
+
/**
* handling errors
*/