src/Validator/Nif.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Validator;
  3. use Symfony\Component\Validator\Constraint;
  4. /**
  5.  * @Annotation
  6.  */
  7. class Nif extends Constraint
  8. {
  9.     /** @var string $message */
  10.     public $message '{{ value }} no es vĂ¡lido.';
  11. }