Files
steamwidgets-web/app/events/eventhandler.php
Daniel Brendel 94353ac3c8 Initial commit
2022-08-16 13:54:30 +02:00

20 lines
277 B
PHP

<?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)
{
}
}