elektronika_bagisto/app/Providers/EventServiceProvider.php

32 lines
712 B
PHP
Raw Normal View History

2018-06-12 04:34:00 +00:00
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Event;
2021-02-25 07:18:37 +00:00
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
2018-06-12 04:34:00 +00:00
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
2018-09-11 11:19:40 +00:00
// protected $listen = [
2021-02-25 07:18:37 +00:00
// Registered::class => [
// SendEmailVerificationNotification::class,
2018-09-11 11:19:40 +00:00
// ],
// ];
2018-06-12 04:34:00 +00:00
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
parent::boot();
}
2021-02-25 07:18:37 +00:00
}