Skip to content

Commit

Permalink
[Bugfix] Double Verification Email (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
dljfield authored Jun 8, 2020
1 parent 5cdeab9 commit 0ac3a62
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions app/Providers/EventServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@

namespace App\Providers;

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
{
Expand All @@ -14,11 +11,7 @@ class EventServiceProvider extends ServiceProvider
*
* @var array
*/
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class,
],
];
protected $listen = [];

/**
* Register any events for your application.
Expand Down

0 comments on commit 0ac3a62

Please sign in to comment.