mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 17:13:49 +00:00
7 lines
147 B
PHP
7 lines
147 B
PHP
<?php
|
|
|
|
abstract class Event_Handler{
|
|
// Force Extending class to define this method
|
|
abstract public function log_event($event_type, $params);
|
|
}
|