From ea67c66bd12006cd051ec3a3369df1fd67408e12 Mon Sep 17 00:00:00 2001 From: Marco Date: Sun, 30 Jul 2017 20:17:41 +0200 Subject: [PATCH] Explain new exception of email confirmation methods in migration guide --- Migration.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Migration.md b/Migration.md index b90093f..70d2fdb 100644 --- a/Migration.md +++ b/Migration.md @@ -52,6 +52,8 @@ $ composer update delight-im/auth ) WHERE user_id IS NULL; ``` + * The two methods `confirmEmail` and `confirmEmailAndSignIn` may now throw an additional `\Delight\Auth\UserAlreadyExistsException` if an attempt has been made to change the email address to an address that has become occupied in the meantime. + * The two methods `forgotPassword` and `resetPassword` may now throw an additional `\Delight\Auth\ResetDisabledException` if the user has disabled password resets for their account. * The `Base64` class is now an external module and has been moved from the namespace `Delight\Auth` to the namespace `Delight\Base64`. The interface and the return values are not compatible with those from previous versions anymore.