vendor/nen/kennisbank-platform/src/Nen/Form/Constraint/StrongPasswordConstraint.php line 11

Open in your IDE?
  1. <?php
  2. namespace Nen\Bundle\KennisbankPlatformBundle\Form\Constraint;
  3. use Nen\Bundle\KennisbankPlatformBundle\Form\Validator\StrongPasswordValidator;
  4. use Symfony\Component\Validator\Constraint;
  5. /**
  6.  * @Annotation
  7.  */
  8. class StrongPasswordConstraint extends Constraint
  9. {
  10.     /**
  11.      * @return string
  12.      */
  13.     public function validatedBy()
  14.     {
  15.         return StrongPasswordValidator::class;
  16.     }
  17. }