src/Validator/InvitationCode.php line 10

  1. <?php
  2. namespace App\Validator;
  3. use Symfony\Component\Validator\Constraint;
  4. /**
  5.  * @Annotation
  6.  */
  7. class InvitationCode extends Constraint
  8. {
  9.     public $message 'INVALID_INVITATION_CODE_KEY';
  10. }