remove class_exists wrapper for class definitions

This commit is contained in:
Tim Fry 2025-03-12 11:14:21 -03:00
parent 2533d0bfab
commit cc14003017
1 changed files with 0 additions and 4 deletions

View File

@ -25,7 +25,6 @@
*/
//define the fax class
if (!class_exists('fax')) {
class fax {
/**
@ -725,7 +724,6 @@ if (!class_exists('fax')) {
}
} //class
}
/*
$o = new fax;
@ -738,5 +736,3 @@ $c->destination_number = $fax_destination_number;
$c->fax_description = $fax_description;
$c->dialplan();
*/
?>