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

18
app/config/events.php Normal file
View File

@ -0,0 +1,18 @@
<?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'
];