Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Malebestia committed Jul 30, 2024
1 parent d4daa87 commit 630c619
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions Providers/EventServiceProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?php

declare(strict_types=1);

namespace Modules\Chart\Providers;

use Illuminate\Foundation\Support\Providers\EventServiceProvider as BaseEventServiceProvider;

class EventServiceProvider extends BaseEventServiceProvider
{
/**
* The event handler mappings for the application.
*
* @var array<string, array<int, string>>
*/
protected $listen = [];

/**
* Indicates if events should be discovered.
*
* @var bool
*/
protected static $shouldDiscoverEvents = true;

/**
* Configure the proper event listeners for email verification.
*/
protected function configureEmailVerification(): void
{
}
}

0 comments on commit 630c619

Please sign in to comment.