SymfonyCasts / reset-password-bundle

Need a killer reset password feature for your Symfony? Us too!
https://symfonycasts.com
MIT License
476 stars 67 forks source link

[command] make class final #296

Closed jrushlow closed 6 months ago

jrushlow commented 7 months ago

ResetPasswordRemoveExpiredCommand::class is now final via @final annotation. In version v2.0.0 this annotation will be replaced with the final PHP keyword - preventing it from being extended.

If customization is needed, creating a new command in userland is recommended.

refs #290