mirror of
https://github.com/SophiaAtkinson/steamwidgets-web.git
synced 2025-06-27 08:07:41 -07:00
20 lines
277 B
PHP
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)
|
|
{
|
|
}
|
|
} |