<?php
// src/Validator/Constraints/AtLeastOneNotNull.php
namespace App\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
/**
* @Annotation
*/
class AtLeastOneNotNull extends Constraint
{
public $message = 'Alespoň jedno pole usí být vyplněné.';
}