Fix missing php tags (#6687)

* fix missing php tags

* fix missing php tags
This commit is contained in:
frytimo 2023-05-10 21:19:57 -03:00 committed by GitHub
parent dae1cc9909
commit 872e676f59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,6 @@
include_once('virtual.php');
<?php
include_once('virtual.php');
class Syslog extends Event_Handler{

View File

@ -1,3 +1,5 @@
<?php
abstract class Event_Handler{
// Force Extending class to define this method
abstract public function log_event($event_type, $params);