diff --git a/CHANGELOG.md b/CHANGELOG.md index 22da579..7319f01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - Fix #326: Fix rule for the user auth_tf_enabled field (santilin) - Fix #290: Fix wrong email message for resending confirmation (tonydspaniard) - Enh #269: Added help documentation to console commands (tonydspaniard) + - Fix #244: Fix forced inclusion of a suggested class (tonydspaniard) ## 1.5.0 April 19, 2019 - Fix: Fix condition in EmailChangeService (it was always false) (borisaeric) diff --git a/src/User/Form/LoginForm.php b/src/User/Form/LoginForm.php index c086b34..ca33b05 100644 --- a/src/User/Form/LoginForm.php +++ b/src/User/Form/LoginForm.php @@ -11,7 +11,6 @@ namespace Da\User\Form; -use Da\TwoFA\Exception\InvalidSecretKeyException; use Da\User\Helper\SecurityHelper; use Da\User\Model\User; use Da\User\Query\UserQuery; @@ -82,7 +81,7 @@ class LoginForm extends Model /** * {@inheritdoc} * - * @throws InvalidSecretKeyException + * @throws \Da\TwoFA\Exception\InvalidSecretKeyException (only if package is being used) */ public function rules() {