Initial commit

This commit is contained in:
Daniel Brendel
2022-08-16 13:54:30 +02:00
commit 94353ac3c8
64 changed files with 32771 additions and 0 deletions

View File

@ -0,0 +1,20 @@
<?php
/*
Asatru PHP - Example event handler
*/
/**
* Example event handler class
*/
class EventHandler {
/**
* Example event handler method
*
* @param $data optional
* @return void
*/
public function myEvent($data = null)
{
}
}