phpldapadmin/app/Providers/EventServiceProvider.php

31 lines
609 B
PHP
Raw Normal View History

2019-05-14 07:52:49 +00:00
<?php
namespace App\Providers;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
2020-08-23 01:37:08 +00:00
use Illuminate\Support\Facades\Event;
2019-05-14 07:52:49 +00:00
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
2020-08-23 01:37:08 +00:00
protected $listen = [];
2019-05-14 07:52:49 +00:00
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
parent::boot();
//
}
}