<?php

namespace App\Providers;

use App\Events\ResetedPassword;
use Illuminate\Auth\Events\Verified;
// use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Support\Facades\Event;
use Illuminate\Auth\Events\Registered;
use App\Listeners\SendPhoneResetNotification;
use App\Listeners\SendPhoneVerificationNotification;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;

class EventServiceProvider extends ServiceProvider
{
    /**
     * The event listener mappings for the application.
     *
     * @var array
     */
    protected $listen = [
        ResetedPassword::class => [
            // SendPhoneResetNotification::class,
        ],
        Registered::class => [
            // SendEmailVerificationNotification::class,
            // SendPhoneVerificationNotification::class,
        ],
        Verified::class => [
            // You can attach some listener
        ],
    ];

    /**
     * Register any events for your application.
     *
     * @return void
     */
    public function boot()
    {
        //
    }
}
