remove class_exists wrapper for class definitions

This commit is contained in:
Tim Fry 2025-03-12 11:15:33 -03:00
parent 63e844111a
commit bc38e8e1de
1 changed files with 2 additions and 6 deletions

View File

@ -25,7 +25,6 @@
Matthew Vale <github@mafoo.org> Matthew Vale <github@mafoo.org>
*/ */
if (!class_exists('tones')) {
class tones { class tones {
//define variables //define variables
@ -66,6 +65,3 @@ if (!class_exists('tones')) {
return $this->tones; return $this->tones;
} }
} }
}
?>