src/Validator/Constraints/ValidPhoneNumber.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 ValidPhoneNumber extends Constraint
  8. {
  9.     public $message 'Le numéro de téléphone "{{ value }}" n\'est pas valide.';
  10. }