fusionpbx/resources/classes/event/handler/virtual.php

7 lines
147 B
PHP
Raw Normal View History

<?php
2015-01-04 04:49:10 +01:00
abstract class Event_Handler{
// Force Extending class to define this method
abstract public function log_event($event_type, $params);
}