File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33## 5.x Series
44
5+ ## Unreleased
6+ ##### 2026-XX-YY
7+
8+ - Fixed the duplicate ` SendEmailVerificationNotification ` registration by adding an empty
9+ ` configureEmailVerification() ` method to the ` EventServiceProvider ` classes -
10+ See also: [ Laravel 11.x Upgrade Guide] ( https://laravel.com/docs/11.x/upgrade#email-verification-notification-on-registration )
11+
512## 5.2.0
613##### 2026-04-21
714
Original file line number Diff line number Diff line change 22
33## 5.x Series
44
5+ ## Unreleased
6+ ##### 2026-XX-YY
7+
8+ - Fixed the duplicate ` SendEmailVerificationNotification ` registration by adding an empty
9+ ` configureEmailVerification() ` method to the ` EventServiceProvider ` class -
10+ See also: [ Laravel 11.x Upgrade Guide] ( https://laravel.com/docs/11.x/upgrade#email-verification-notification-on-registration )
11+
512## 5.2.0
613##### 2026-04-21
714
Original file line number Diff line number Diff line change @@ -41,4 +41,8 @@ class EventServiceProvider extends ServiceProvider
4141 DissociateUserFromCart::class
4242 ]
4343 ];
44+
45+ protected function configureEmailVerification (): void
46+ {
47+ }
4448}
Original file line number Diff line number Diff line change @@ -74,4 +74,8 @@ class EventServiceProvider extends ServiceProvider
7474 UpdatePromotionUsage::class,
7575 ],
7676 ];
77+
78+ protected function configureEmailVerification (): void
79+ {
80+ }
7781}
You can’t perform that action at this time.
0 commit comments