From 20248c364ed6dfe8ba15ed0630cba89197d18045 Mon Sep 17 00:00:00 2001 From: Erik Bernskiold Date: Sat, 15 Jan 2022 12:11:59 +0100 Subject: [PATCH] Remove using wp debug (#37) --- ilmenite-cookie-consent.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ilmenite-cookie-consent.php b/ilmenite-cookie-consent.php index 72d2a66..67002e4 100644 --- a/ilmenite-cookie-consent.php +++ b/ilmenite-cookie-consent.php @@ -310,7 +310,7 @@ public static function get_remember_me_duration() { /** * Add body classes * - * @param array $classes + * @param array $classes * * @return array */ @@ -346,10 +346,6 @@ public function is_debugging() { return ILCC_DEBUG; } - if ( defined( 'WP_DEBUG' ) ) { - return WP_DEBUG; - } - return false; }