virtual.php 139 B

1234
  1. abstract class Event_Handler{
  2. // Force Extending class to define this method
  3. abstract public function log_event($event_type, $params);
  4. }