mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 09:03:49 +00:00
5 lines
139 B
PHP
5 lines
139 B
PHP
abstract class Event_Handler{
|
|
// Force Extending class to define this method
|
|
abstract public function log_event($event_type, $params);
|
|
}
|