Initial Commit

This commit is contained in:
2020-10-29 06:56:34 +00:00
commit 39cdd8e860
40 changed files with 6333 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Providers;
use Laravel\Lumen\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
\App\Events\ExampleEvent::class => [
\App\Listeners\ExampleListener::class,
],
];
}