new event handler

This commit is contained in:
luis daniel lucio quiroz
2015-01-04 03:49:10 +00:00
parent 51fef13893
commit cc4009670a
3 changed files with 88 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
abstract class Event_Handler{
// Force Extending class to define this method
abstract public function log_event($event_type, $params);
}