staffmanager/app/Providers/EventServiceProvider.php

47 lines
1.1 KiB
PHP
Raw Normal View History

2020-04-26 04:09:32 +00:00
<?php
namespace App\Providers;
use App\Listeners\OnUserRegistration;
2020-04-26 04:09:32 +00:00
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Event;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class,
OnUserRegistration::class
2020-04-26 04:09:32 +00:00
],
'App\Events\ApplicationApprovedEvent' => [
'App\Listeners\PromoteUser'
],
'App\Events\ApplicationDeniedEvent' => [
'App\Listeners\DenyUser'
],
'App\Events\UserBannedEvent' => [
'App\Listeners\OnUserBanned'
]
2020-04-26 04:09:32 +00:00
];
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
2020-04-26 04:09:32 +00:00
parent::boot();
//
}
}