remove class_exists wrapper for class definitions

This commit is contained in:
Tim Fry 2025-03-12 11:15:41 -03:00
parent cd44b3c2b2
commit 5795cd8ef5
1 changed files with 0 additions and 5 deletions

View File

@ -25,7 +25,6 @@
Mark J Crane <markjcrane@fusionpbx.com>
*/
if (!class_exists('modal')) {
class modal {
static function create($array) {
@ -65,11 +64,7 @@ if (!class_exists('modal')) {
$modal .= "</div>";
return $modal;
unset($modal);
}
}
}
?>