![SPT-dev](/assets/img/avatar_default.png)
Hello, I'm adding the whole https://items.sp-tarkov.com code base as well as the drone pipeline to deploy it. Please **double check *thoroughly* every** to ensure it matches the server architecture and configuration.
20 lines
395 B
PHP
20 lines
395 B
PHP
<?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,
|
|
],
|
|
];
|
|
}
|