From e9378fc9beb83bf82019d4304a1506faf90a8467 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli <36352093+GuySartorelli@users.noreply.github.com> Date: Wed, 2 Oct 2024 17:32:00 +1300 Subject: [PATCH] FIX Update FQCN for reference to RulesPasswordValidator (#286) --- src/Context/LoginContext.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Context/LoginContext.php b/src/Context/LoginContext.php index cf8217a..850783d 100644 --- a/src/Context/LoginContext.php +++ b/src/Context/LoginContext.php @@ -12,7 +12,7 @@ use SilverStripe\Security\Member; use SilverStripe\Security\Permission; use SilverStripe\Security\Security; use SilverStripe\MFA\Model\RegisteredMethod; -use SilverStripe\Security\PasswordValidator; +use SilverStripe\Security\Validation\RulesPasswordValidator; /** * LoginContext @@ -316,7 +316,7 @@ class LoginContext implements Context // make sure any validation for password is skipped, since we're not testing complexity here $validator = Member::password_validator(); - $nullValidator = new PasswordValidator(); + $nullValidator = new RulesPasswordValidator(); $nullValidator->setMinLength(0); $nullValidator->setMinTestScore(0); $nullValidator->setHistoricCount(0);