mirror of
https://github.com/SophiaAtkinson/steamwidgets-web.git
synced 2025-06-27 14:37:41 -07:00
19 lines
344 B
PHP
19 lines
344 B
PHP
<?php
|
|
|
|
/*
|
|
Asatru PHP - events configuration file
|
|
|
|
Add here all your event handlers
|
|
|
|
Schema:
|
|
<event name> = <event class>@<event handler>
|
|
Example:
|
|
'my_event' => 'EventHandler@myEvent'
|
|
Explanation:
|
|
Will register the event handler with the event
|
|
*/
|
|
|
|
return [
|
|
'my_event' => 'EventHandler@myEvent'
|
|
];
|