<?php
abstract class Event_Handler{
// Force Extending class to define this method
abstract public function log_event($event_type, $params);
}