Files
fusionpbx/resources/classes/event/handler/virtual.php
frytimo 872e676f59 Fix missing php tags (#6687)
* fix missing php tags

* fix missing php tags
2023-05-10 18:19:57 -06:00

7 lines
147 B
PHP

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