diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-01-09 09:12:06 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-01-09 15:21:09 +0100 |
commit | 000c29c2deaea9e4ea3e30ee7ac5409a7090b2da (patch) | |
tree | a5955e42f59f429953854665c2b421e53d39f49d /Core/Validator | |
parent | 4fc80782bbb79b7379e833616321e585dd727e92 (diff) | |
download | symfony-security-000c29c2deaea9e4ea3e30ee7ac5409a7090b2da.zip symfony-security-000c29c2deaea9e4ea3e30ee7ac5409a7090b2da.tar.gz symfony-security-000c29c2deaea9e4ea3e30ee7ac5409a7090b2da.tar.bz2 |
[Validator] fixed deprecation notices for BuildViolation() calls in constraints
Diffstat (limited to 'Core/Validator')
-rw-r--r-- | Core/Validator/Constraints/UserPasswordValidator.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Core/Validator/Constraints/UserPasswordValidator.php b/Core/Validator/Constraints/UserPasswordValidator.php index 2dc7fee..ee9ddda 100644 --- a/Core/Validator/Constraints/UserPasswordValidator.php +++ b/Core/Validator/Constraints/UserPasswordValidator.php @@ -14,6 +14,7 @@ namespace Symfony\Component\Security\Core\Validator\Constraints; use Symfony\Component\Security\Core\User\UserInterface; use Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface; use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface; +use Symfony\Component\Validator\Context\ExecutionContextInterface; use Symfony\Component\Validator\Constraint; use Symfony\Component\Validator\ConstraintValidator; use Symfony\Component\Validator\Exception\ConstraintDefinitionException; |