mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-11 23:19:05 +00:00
36 lines
677 B
PHP
36 lines
677 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
|
|
|
class EventServiceProvider extends ServiceProvider {
|
|
/**
|
|
* The event listener mappings for the application.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $listen = [
|
|
'App\Events\Event' => [
|
|
'App\Listeners\EventListener',
|
|
],
|
|
'Illuminate\Mail\Events\MessageSending' => [
|
|
'App\Listeners\LogSendingMessage',
|
|
],
|
|
'Illuminate\Mail\Events\MessageSent' => [
|
|
'App\Listeners\LogSentMessage',
|
|
],
|
|
];
|
|
|
|
/**
|
|
* Register any events for your application.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot() {
|
|
parent::boot();
|
|
|
|
//
|
|
}
|
|
}
|