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);
|
||
|
|
}
|