src/Validator/Constraints/TelegramUsernameNotValid.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Validator\Constraints;
  3. use Symfony\Component\Validator\Constraint;
  4. /**
  5.  * @Annotation
  6.  */
  7. class TelegramUsernameNotValid extends Constraint
  8. {
  9.     public $message 'Недопустимый юзернейм Телеграм.';
  10. }