src/Validator/LostPwd.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Validator;
  3. use Symfony\Component\Validator\Constraint;
  4. /**
  5.  * @Annotation
  6.  *
  7.  * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
  8.  */
  9. #[\Attribute(\Attribute::TARGET_PROPERTY \Attribute::TARGET_METHOD \Attribute::IS_REPEATABLE)]
  10. class LostPwd extends Constraint
  11. {
  12.     public $messageInvalidEmail "invalid_credentials";
  13.     public $messageInactiveAccess "invalid_credentials";
  14. }