src/Validator/Constraints/AtLeastOneNotNull.php line 10

Open in your IDE?
  1. <?php
  2. // src/Validator/Constraints/AtLeastOneNotNull.php
  3. namespace App\Validator\Constraints;
  4. use Symfony\Component\Validator\Constraint;
  5. /**
  6.  * @Annotation
  7.  */
  8. class AtLeastOneNotNull extends Constraint
  9. {
  10.     public $message 'Alespoň jedno pole usí být vyplněné.';
  11. }