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

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'
];