From b62af7ee53acf31c8203b28d7f2ad14378921ce4 Mon Sep 17 00:00:00 2001 From: Tim Fry Date: Wed, 12 Mar 2025 11:11:29 -0300 Subject: [PATCH] remove class_exists wrapper for class definitions --- core/dashboard/resources/classes/dashboard.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/core/dashboard/resources/classes/dashboard.php b/core/dashboard/resources/classes/dashboard.php index 34f973bd95..6ecb1ba8fa 100644 --- a/core/dashboard/resources/classes/dashboard.php +++ b/core/dashboard/resources/classes/dashboard.php @@ -26,12 +26,7 @@ /** * dashboard class - * - * @method null delete - * @method null toggle - * @method null copy */ -if (!class_exists('dashboard')) { class dashboard { /** @@ -247,6 +242,3 @@ if (!class_exists('dashboard')) { } } -} - -?>